コード例 #1
0
 protected void beginTransaction(String txID) throws ActiveMQStompException {
   try {
     manager.beginTransaction(this, txID);
   } catch (ActiveMQStompException e) {
     throw e;
   } catch (Exception e) {
     throw BUNDLE.errorBeginTx(txID, e).setHandler(frameHandler);
   }
 }