public void handleStandardException(Throwable t) { defaultHandler(t); markTransactionForRollback(); }
public void handleRoutingException( UMOMessage message, UMOImmutableEndpoint endpoint, Throwable t) { defaultHandler(t); routeException(message, endpoint, t); }
public void handleLifecycleException(Object component, Throwable t) { defaultHandler(t); logger.error("The object that failed was: \n" + ObjectUtils.toString(component, "null")); markTransactionForRollback(); }
public void handleMessagingException(UMOMessage message, Throwable t) { defaultHandler(t); routeException(message, null, t); }