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:
java.io.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
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description PropagationException()
Creates a new PropagationException.PropagationException(java.lang.String message)
Creates a new PropagationException with the provided message.PropagationException(java.lang.String message, java.lang.Throwable cause)
Creates a new PropagationException with the provided message and cause.
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
PropagationException
public PropagationException()
Creates a new PropagationException.
-
PropagationException
public PropagationException(java.lang.String message)
Creates a new PropagationException with the provided message.- Parameters:
message
- the message of the exception.
-
PropagationException
public PropagationException(java.lang.String message, java.lang.Throwable cause)
Creates a new PropagationException with the provided message and cause.- Parameters:
message
- the message of the exceptioncause
- the cause of the exception.
-
-