com.scalar.db.sql.exception.TransactionNotFoundException Maven / Gradle / Ivy
The newest version!
package com.scalar.db.sql.exception;
/**
* An exception thrown when the transaction associated with the specified transaction is not found.
* You can retry the transaction from the beginning.
*/
public class TransactionNotFoundException extends TransactionRetryableException {
public TransactionNotFoundException(String message, String transactionId) {
super(message, transactionId);
}
public TransactionNotFoundException(String message, Throwable cause, String transactionId) {
super(message, cause, transactionId);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy