Hi, just curious how would camel handle a runtime exception in this routing example:
from("jms:someQueue").beanRef("someBean", "doSomething"); If bean#doSomething() throws a RuntimeException? Is the exception just logged and swallowed? I'm mainly just interested in understanding if it will affect future processing of messages that show up on the queue.