* @return true if the exception was handled
*/
private boolean tryStateHandlers(FlowExecutionException exception, RequestControlContext context) {
if (exception.getStateId() != null) {
State state = getActiveSessionInternal().getFlow().getStateInstance(exception.getStateId());
return state.handleException(exception, context);
} else {
return false;
}
}