Package org.multiverse.api.exceptions
Class DeadTxnException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.multiverse.api.exceptions.TxnExecutionException
org.multiverse.api.exceptions.IllegalTxnStateException
org.multiverse.api.exceptions.DeadTxnException
- All Implemented Interfaces:
Serializable
An
IllegalTxnStateException
thrown when an action is executed on a
Txn
that is either committed or aborted.- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new DeadTxnException.DeadTxnException
(String message) Creates a new DeadTxnException with the provided message.DeadTxnException
(String message, Throwable cause) Creates a new DeadTxnException. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
DeadTxnException
public DeadTxnException()Creates a new DeadTxnException. -
DeadTxnException
Creates a new DeadTxnException with the provided message.- Parameters:
message
- the message of the exception.
-
DeadTxnException
Creates a new DeadTxnException.- Parameters:
message
- the message of the exception.cause
- the cause of the exception.
-