I have an excepton handler at the webflow level
<exception-handler bean="webflowExceptionHandlerBean"/>
Also I have two different flows, Flow A and Flow B. Flow B is a sub-flow of Flow A.
Flow A
<flow>
<on-start>
<!-- SOME SET -->
</on-start>
<view-state id="viewStateA">
<transition id="goToFlowB" to="flowB"/>
</view-state>
<subflow-state id="flowB" subflow="flowB">
</subflow-state>
</flow>
Flow B
<flow>
<on-start>
<!-- SOME SET -->
</on-start>
<view-state id="flowB">
<on-entry>
<!-- HERE THE EXCEPTION IS THROWN -->
</on-entry>
<transition id="goToT1" to="t1"/>
</view-state>
</flow>
So when an exception is thrown in the on-entry of the Flow B that is not catch by the webflowExceptionHandlerBean
The configuration of the webflowExceptionHandlerBean implements FlowExecutionExceptionHandler
I've tried using and it worked, but I wana use just one global exception handler on each flow.
Do you know what happend? Am I missing something?