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:
java.io.Serializable
public class DeadTxnException extends IllegalTxnStateException
AnIllegalTxnStateException
thrown when an action is executed on aTxn
that is either committed or aborted.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description DeadTxnException()
Creates a new DeadTxnException.DeadTxnException(java.lang.String message)
Creates a new DeadTxnException with the provided message.DeadTxnException(java.lang.String message, java.lang.Throwable cause)
Creates a new DeadTxnException.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
DeadTxnException
public DeadTxnException()
Creates a new DeadTxnException.
-
DeadTxnException
public DeadTxnException(java.lang.String message)
Creates a new DeadTxnException with the provided message.- Parameters:
message
- the message of the exception.
-
DeadTxnException
public DeadTxnException(java.lang.String message, java.lang.Throwable cause)
Creates a new DeadTxnException.- Parameters:
message
- the message of the exception.cause
- the cause of the exception.
-
-