Home

xl2.transaction
Class TransactionException

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

public class TransactionException
extends NestedException

All transaction exceptions are of this type.

See Also:
Serialized Form

Constructor Summary
TransactionException()
           
TransactionException(java.lang.Exception nested)
           
TransactionException(java.lang.String message)
           
 
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

TransactionException

public TransactionException()

TransactionException

public TransactionException(java.lang.String message)

TransactionException

public TransactionException(java.lang.Exception nested)

Home