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