public abstract class RetryException extends TxnExecutionException
TxnExecutionException
thrown when retrying a transaction for another attempt fails.
E.g. because an explicit retry is not used, or when there are too many retry attempts.Constructor and Description |
---|
RetryException()
Creates a new RetryException.
|
RetryException(java.lang.String message)
Creates a new RetryException with the provided message.
|
RetryException(java.lang.String message,
java.lang.Throwable cause)
Creates a new RetryException with the provided message and cause.
|
public RetryException()
public RetryException(java.lang.String message)
message
- the message of the RetryException.public RetryException(java.lang.String message, java.lang.Throwable cause)
message
- the message of the RetryException.cause
- the cause of the RetryException.