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

javax.persistence.RollbackException Maven / Gradle / Ivy

There is a newer version: 1.0.1.Final
Show newest version
// $Id: RollbackException.java 17752 2009-10-15 01:19:21Z [email protected] $
// EJB3 Specification Copyright 2004-2009 Sun Microsystems, Inc.
package javax.persistence;

/**
 * Thrown by the persistence provider when
 * {@link EntityTransaction#commit() EntityTransaction.commit()} fails.
 *
 * @see javax.persistence.EntityTransaction#commit()
 * @since Java Persistence 1.0
 */
public class RollbackException extends PersistenceException {
	/**
	 * Constructs a new RollbackException exception
	 * with null as its detail message.
	 */
	public RollbackException() {
		super();
	}

	/**
	 * Constructs a new RollbackException exception
	 * with the specified detail message.
	 *
	 * @param message the detail message.
	 */
	public RollbackException(String message) {
		super( message );
	}

	/**
	 * Constructs a new RollbackException exception
	 * with the specified detail message and cause.
	 *
	 * @param message the detail message.
	 * @param cause the cause.
	 */
	public RollbackException(String message, Throwable cause) {
		super( message, cause );
	}

	/**
	 * Constructs a new RollbackException exception
	 * with the specified cause.
	 *
	 * @param cause the cause.
	 */
	public RollbackException(Throwable cause) {
		super(cause);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy