Package org.jboss.messaging.core.tx

Examples of org.jboss.messaging.core.tx.TransactionException


      if (persistent != null)
      {
         //Only used in testing
         if (failAfterCommit)
         {
            throw new TransactionException("Forced failure for testing");
         }
        
         // Cast a commit message
         ClusterRequest req = new SendTransactionRequest(nodeId, txId);
        
View Full Code Here


      }
     
      //Only used in testing
      if (failBeforeCommit)
      {
         throw new TransactionException("Forced failure for testing");
      }
   }
View Full Code Here

                     addReferenceInMemory(ref);
                  }
               }
               catch (Throwable t)
               {
                  throw new TransactionException("Failed to add reference", t);
               }
            }

            // Remove deliveries
           
View Full Code Here

TOP

Related Classes of org.jboss.messaging.core.tx.TransactionException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.