![JAR search and dependency download from the Maven repository](/logo.png)
org.dizitart.no2.exceptions.TransactionException Maven / Gradle / Ivy
package org.dizitart.no2.exceptions;
/**
* Exception thrown when an error occurs during a transaction.
*
* @author Anindya Chatterjee
* @since 4.0
*/
public class TransactionException extends NitriteException {
/**
* Instantiates a new Transaction exception.
*
* @param errorMessage the error message
*/
public TransactionException(String errorMessage) {
super(errorMessage);
}
/**
* Instantiates a new Transaction exception.
*
* @param errorMessage the error message
* @param error the error
*/
public TransactionException(String errorMessage, Throwable error) {
super(errorMessage, error);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy