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