Package org.multiverse.api.exceptions
Class TxnMandatoryException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.multiverse.api.exceptions.TxnExecutionException
org.multiverse.api.exceptions.PropagationException
org.multiverse.api.exceptions.TxnMandatoryException
- All Implemented Interfaces:
Serializable
A
PropagationException
thrown when no Txn
is available while it is mandatory. A typical
cause of this exception is that the PropagationLevel.Mandatory
is used.-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionCreates a new TxnMandatoryException.TxnMandatoryException
(Class clazz, String method) Creates a new TxnMandatoryExceptionTxnMandatoryException
(String message) Creates a new TxnMandatoryException with the provided message.TxnMandatoryException
(String message, Throwable cause) Creates a new TxnMandatoryException with the provided message. -
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
-
TxnMandatoryException
public TxnMandatoryException()Creates a new TxnMandatoryException. -
TxnMandatoryException
Creates a new TxnMandatoryException with the provided message.- Parameters:
message
- the message of the exception.
-
TxnMandatoryException
Creates a new TxnMandatoryException- Parameters:
clazz
- the class of the method where the transaction was requiredmethod
- the name of the method where the transaction was required.
-
TxnMandatoryException
Creates a new TxnMandatoryException with the provided message.- Parameters:
message
- the message of the exception.cause
- the cause of the exception.
-