Class UnknownTransactionException

All Implemented Interfaces:
Serializable
Direct Known Subclasses:
SyncHybridTransactionException

public class UnknownTransactionException extends TransactionException
Exception thrown when a transaction is not recognized as a valid or known transaction. Common reasons for this include: the transaction has previously been explicitly aborted; the transaction has previously aborted because the transaction manager crashed; the transaction has previously been explicitly committed.
Since:
1.0
Author:
Sun Microsystems, Inc.
See Also:
  • Constructor Details

    • UnknownTransactionException

      public UnknownTransactionException(String desc)
      Constructs an instance with a detail message.
      Parameters:
      desc - the detail message
    • UnknownTransactionException

      public UnknownTransactionException()
      Constructs an instance with no detail message.
    • UnknownTransactionException

      public UnknownTransactionException(String desc, Throwable e)
      Constructs an instance with detail message and inner throwable.