I'm using Camel 2.2.0-fuse-02-00 in Fure SMX.
What I want is to catch any exception when sending to the recipientList, 
something like:

from("...")
.doTry()
.recipientList(header(..))
.doCatch(Exception.class)
.to(..)
.end()

But Eclipse does not allow me to do .doCatch(..) after .recipientList(..)
What I can do is to put a route scope onException after from(..) but what is 
the proper way of handling exception in recipientList?

Regards,
Ngoc Hai

Reply via email to