My route configure method looks like this:

public void configure() {

 onException(IOException.class).handled(true).bean(ExceptionHandler.class,
"handleException");

   from().process().bean(firstBean.class, "abc").process().end();
}

"abc" method of firstBean throws IOException, still, "handleException"
method of ExceptionHandler class is not being invoked. What can be the
reason?

Reply via email to