Package org.multiverse.api.exceptions
Class StmMismatchException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.multiverse.api.exceptions.TxnExecutionException
org.multiverse.api.exceptions.StmMismatchException
- All Implemented Interfaces:
Serializable
A
TxnExecutionException
thrown when a transaction encounters encounters a transactional object
that belongs to a different Stm instance.
Normally this exception is not thrown because only a single Stm instance, stored in the GlobalStmInstance
is used.
- See Also:
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionStmMismatchException
(String message) Creates a new StmMismatchException with the provided message.StmMismatchException
(String message, Throwable cause) Creates a new StmMismatchException 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
-
StmMismatchException
Creates a new StmMismatchException with the provided message.- Parameters:
message
- the message
-
StmMismatchException
Creates a new StmMismatchException with the provided message.- Parameters:
message
- the messagecause
- the cause
-