Suppose I have this route
from("direct:foo").to("bean:myBean").to("direct:bar");If something goes wrong, I want to catch the exception and send the exception message as the body of a message to "direct:bar". How do I do this easily? -- /Magnus Heino
