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

org.hibernate.TransactionException Maven / Gradle / Ivy

There is a newer version: 3.6.0.Beta2
Show newest version
//$Id: TransactionException.java 3890 2004-06-03 16:31:32Z steveebersole $
package org.hibernate;

/**
 * Indicates that a transaction could not be begun, committed
 * or rolled back.
 *
 * @see Transaction
 * @author Anton van Straaten
 */

public class TransactionException extends HibernateException {

	public TransactionException(String message, Exception root) {
		super(message,root);
	}

	public TransactionException(String message) {
		super(message);
	}

}










© 2015 - 2024 Weber Informatics LLC | Privacy Policy