com.scalar.db.sql.exception.TransactionRetryableException Maven / Gradle / Ivy
package com.scalar.db.sql.exception;
/**
* An exception thrown when a retryable error occurs. You can retry the transaction from the
* beginning.
*/
public class TransactionRetryableException extends SqlException {
public TransactionRetryableException(String message, String transactionId) {
super(message, transactionId);
}
public TransactionRetryableException(String message, Throwable cause, String transactionId) {
super(message, cause, transactionId);
}
}