Package net.jini.core.transaction
Class UnknownTransactionException
java.lang.Object
java.lang.Throwable
java.lang.Exception
net.jini.core.transaction.TransactionException
net.jini.core.transaction.UnknownTransactionException
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
SyncHybridTransactionException
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 Summary
ConstructorsConstructorDescriptionConstructs an instance with no detail message.Constructs an instance with a detail message.UnknownTransactionException(String desc, Throwable e) Constructs an instance with detail message and inner throwable. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
UnknownTransactionException
Constructs an instance with a detail message.- Parameters:
desc- the detail message
-
UnknownTransactionException
public UnknownTransactionException()Constructs an instance with no detail message. -
UnknownTransactionException
Constructs an instance with detail message and inner throwable.
-