Package org.multiverse.api.exceptions
Class PropagationException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.multiverse.api.exceptions.TxnExecutionException
-
- org.multiverse.api.exceptions.PropagationException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
TxnMandatoryException
,TxnNotAllowedException
public class PropagationException extends TxnExecutionException
AnIllegalStateException
throw when there is a conflict with theTxn
propagation. For more informationPropagationLevel
.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description PropagationException()
Creates a new PropagationException.PropagationException(String message)
Creates a new PropagationException with the provided message.PropagationException(String message, Throwable cause)
Creates a new PropagationException with the provided message and cause.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
PropagationException
public PropagationException()
Creates a new PropagationException.
-
PropagationException
public PropagationException(String message)
Creates a new PropagationException with the provided message.- Parameters:
message
- the message of the exception.
-
-