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

org.milyn.db.TransactionException Maven / Gradle / Ivy

package org.milyn.db;

/**
 * Exception if something goes wrong with the transaction or with
 * setting the transaction settings.
 *
 * @author [email protected]
 *
 */
class TransactionException extends RuntimeException {

	/**
	 *
	 */
	private static final long serialVersionUID = 1L;

	/**
	 * @param message
	 * @param cause
	 */
	public TransactionException(String message, Throwable cause) {
		super(message, cause);
	}

	/**
	 * @param message
	 */
	public TransactionException(String message) {
		super(message);
	}

	/**
	 * @param cause
	 */
	public TransactionException(Throwable cause) {
		super(cause);
	}



}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy