Home

xl2.transaction
Class TransactionAbortedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--xl2.util.NestedException
                          |
                          +--xl2.transaction.TransactionException
                                |
                                +--xl2.transaction.TransactionAbortedException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
AbortFailedException

public class TransactionAbortedException
extends TransactionException

A transaction inadvertently aborted.

See Also:
Serialized Form

Constructor Summary
TransactionAbortedException(Transaction transaction, java.lang.Exception exception)
           
TransactionAbortedException(Transaction transaction, java.lang.String message)
           
 
Method Summary
 Transaction getTransaction()
          The transaction in question.
 
Methods inherited from class xl2.util.NestedException
getException, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Throwable
fillInStackTrace
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

TransactionAbortedException

public TransactionAbortedException(Transaction transaction,
                                   java.lang.String message)

TransactionAbortedException

public TransactionAbortedException(Transaction transaction,
                                   java.lang.Exception exception)
Method Detail

getTransaction

public Transaction getTransaction()
The transaction in question.

Home