All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.scalar.db.sql.exception.UnknownTransactionStatusException Maven / Gradle / Ivy

There is a newer version: 3.14.0
Show newest version
package com.scalar.db.sql.exception;

/** An exception thrown when the transaction status (committed or aborted) is unknown. */
public class UnknownTransactionStatusException extends SqlException {

  public UnknownTransactionStatusException(String message, String transactionId) {
    super(message, transactionId);
  }

  public UnknownTransactionStatusException(String message, Throwable cause, String transactionId) {
    super(message, cause, transactionId);
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy