TransactionException is thrown when an exception occurs while trying to create, start commit or rollback an exception
TransactionException
7576777879808182
{ ((Session)resource).commit(); } catch (JMSException e) { throw new TransactionException(CoreMessages.transactionCommitFailed(), e); } }
979899100101102103104
} ((Session)resource).rollback(); } catch (JMSException e) { throw new TransactionException(CoreMessages.transactionRollbackFailed(), e); } }
4647484950515253
{ ((QueueSession)resource).begin(); } catch (ResourceManagerException e) { throw new TransactionException(CoreMessages.cannotStartTransaction("VMTransaction"), e); } }
5859606162636465
{ ((QueueSession)resource).commit(); } catch (ResourceManagerException e) { throw new TransactionException(CoreMessages.transactionCommitFailed(), e); } }
7071727374757677
{ ((QueueSession)resource).rollback(); } catch (ResourceManagerException e) { throw new TransactionException(CoreMessages.transactionRollbackFailed(), e); } }
495051525354555657
con.setAutoCommit(false); } } catch (SQLException e) { throw new TransactionException(JdbcMessages.transactionSetAutoCommitFailed(), e); } super.bindResource(key, resource); }
7475767778798081
((Connection)resource).commit(); ((Connection)resource).close(); } catch (SQLException e) { throw new TransactionException(CoreMessages.transactionCommitFailed(), e); } }
298299300301302303304305306307308
{ connection.setAutoCommit(false); } catch (SQLException e) { throw new TransactionException(e); } if (isEnlisted()) { return false;
344345346347348349350351
{ return xaConnection.getXAResource(); } catch (SQLException e) { throw new TransactionException(e); } }
4546474849505152
transaction.registerSynchronization(new ExternalTransaction(muleContext)); } } catch (Exception e) { throw new TransactionException(CoreMessages.cannotStartTransaction("XA"), e); } }