public class InvalidTransactionException extends RuntimeException
When a transaction is commited, Modelio audits the transaction to check that
it is considered as valid. If not, an InvalidTransactionException exception
is thrown.
| Constructor and Description |
|---|
InvalidTransactionException()
Constructs a new runtime exception with
null as its
detail message. |
InvalidTransactionException(String message)
Constructs a new runtime exception with the specified detail message.
|
InvalidTransactionException(String message,
Throwable cause)
Constructs a new runtime exception with the specified detail message and
cause.
|
InvalidTransactionException(Throwable cause)
Constructs a new runtime exception with the specified cause.
|
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic InvalidTransactionException()
null as its
detail message.public InvalidTransactionException(String message)
message - the detail message.public InvalidTransactionException(String message, Throwable cause)
message - the detail message.cause - the cause of the exception.public InvalidTransactionException(Throwable cause)
cause - the cause of the exception.