public class TxnExecutionException
extends java.lang.RuntimeException
RuntimeException
thrown when something fails while executing a Txn
.
This exception is not caught by the TxnExecutor
.
Constructor and Description |
---|
TxnExecutionException()
Creates a new TransactionalExecutionException.
|
TxnExecutionException(java.lang.String message)
Creates a new TransactionalExecutionException with the provided message and cause.
|
TxnExecutionException(java.lang.String message,
java.lang.Throwable cause)
Creates a new TransactionalExecutionException with the provided message and cause.
|
TxnExecutionException(java.lang.Throwable cause)
Creates a new TransactionalExecutionException with the provided cause.
|
public TxnExecutionException()
public TxnExecutionException(java.lang.String message)
message
- message of the exception.public TxnExecutionException(java.lang.String message, java.lang.Throwable cause)
message
- the message of the exception.cause
- the Throwable that caused the exception.public TxnExecutionException(java.lang.Throwable cause)
cause
- the Throwable that was the cause of this TransactionalExecutionException.