Package org.jboss.tm

Examples of org.jboss.tm.JBossTransactionRolledbackLocalException


                     "Unexpected Throwable",
                     remoteTxRollback.detail);
               cause = new EJBException(msg);
            }

            e = new JBossTransactionRolledbackLocalException(
                  remoteTxRollback.getMessage(),
                  cause);
         }

         // If we got a local TransactionRolledbackLocalException for a remote
View Full Code Here


            }
         }
         if (type == InvocationType.LOCAL
             || type == InvocationType.LOCALHOME)
         {
            throw new JBossTransactionRolledbackLocalException(e);
         }
         else
         {
            throw new JBossTransactionRolledbackException(e);
         }
View Full Code Here

/* 263 */             String msg = formatException("Unexpected Throwable", remoteTxRollback.detail);
/*     */
/* 266 */             cause = new EJBException(msg);
/*     */           }
/*     */         }
/* 269 */         e = new JBossTransactionRolledbackLocalException(remoteTxRollback.getMessage(), cause);
/*     */       }
/*     */
/* 276 */       if ((!isLocal) && ((e instanceof TransactionRolledbackLocalException)))
/*     */       {
/* 278 */         TransactionRolledbackLocalException localTxRollback = (TransactionRolledbackLocalException)e;
View Full Code Here

/* 563 */         e = (Exception)rollback.getCause();
/*     */       }
/*     */     }
/* 566 */     if ((type == InvocationType.LOCAL) || (type == InvocationType.LOCALHOME))
/*     */     {
/* 569 */       throw new JBossTransactionRolledbackLocalException(e);
/*     */     }
/*     */
/* 573 */     throw new JBossTransactionRolledbackException(e);
/*     */   }
View Full Code Here

TOP

Related Classes of org.jboss.tm.JBossTransactionRolledbackLocalException

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.