456457458459460461462463464465466
} catch (XAException e) { if (e.errorCode != XAException.XAER_NOTA) throw e; } try { xar.forget(xid11); } catch (XAException e) { if (e.errorCode != XAException.XAER_NOTA) throw e; } } catch (SQLException e) {
114115116117118119120121122123124
{ XAResource xaResource = getDelegate(false); HornetQXAResourceWrapper.log.debug("Forget " + currentConnection + " xid "); try { xaResource.forget(xid); } catch (XAException e) { throw check(e); }
7980818283848586878889
/* */ { /* 126 */ log.debug("Forget " + this.providerName + " xid "); /* 127 */ XAResource xaResource = getDelegate(); /* */ try /* */ { /* 130 */ xaResource.forget(xid); /* */ } /* */ catch (XAException e) /* */ { /* 134 */ throw check(e); /* */ }
90919293949596979899100
/* */ { /* 148 */ log.debug("Forget " + this.providerName + " xid "); /* 149 */ XAResource xaResource = getDelegate(); /* */ try /* */ { /* 152 */ xaResource.forget(xid); /* */ } /* */ catch (XAException e) /* */ { /* 156 */ throw check(e); /* */ }
123124125126127128129130131132133
{ HornetQXAResourceWrapper.log.debug("Forget " + connectorFactoryClassName + " xid "); XAResource xaResource = getDelegate(); try { xaResource.forget(xid); } catch (XAException e) { throw check(e); }
361362363364365366367368369370371
} catch (SQLException sqlEx) { // we expect an exception here assertEquals("2D000", sqlEx.getSQLState()); } } finally { xaRes1.forget(xid); } } finally { if (xaConn1 != null) { xaConn1.close(); }
130131132133134135136137138139140
{ XAResource xaResource = getDelegate(false); HornetQXAResourceWrapper.log.debug("Forget " + xaResource + " xid "); try { xaResource.forget(xid); } catch (XAException e) { throw check(e); }