Home

xl2.transaction
Class TransactionNotClosedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--xl2.util.NestedException
                          |
                          +--xl2.transaction.TransactionException
                                |
                                +--xl2.transaction.TransactionNotClosedException
All Implemented Interfaces:
java.io.Serializable

public class TransactionNotClosedException
extends TransactionException

A call was made when a transaction should have been closed.

See Also:
Transaction.isClosed(), Transaction.isOpen(), Serialized Form

Constructor Summary
TransactionNotClosedException(Transaction transaction)
           
TransactionNotClosedException(Transaction transaction, java.lang.String message)
           
 
Method Summary
 Transaction getTransaction()
           
 
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

TransactionNotClosedException

public TransactionNotClosedException(Transaction transaction)

TransactionNotClosedException

public TransactionNotClosedException(Transaction transaction,
                                     java.lang.String message)
Method Detail

getTransaction

public Transaction getTransaction()

Home