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

org.hibernate.CallbackException Maven / Gradle / Ivy

There is a newer version: 3.6.0.Beta2
Show newest version
//$Id: CallbackException.java 4242 2004-08-11 09:10:45Z oneovthafew $
package org.hibernate;


/**
 * Should be thrown by persistent objects from Lifecycle
 * or Interceptor callbacks.
 *
 * @see Lifecycle
 * @see Interceptor
 * @author Gavin King
 */

public class CallbackException extends HibernateException {

	public CallbackException(Exception root) {
		super("An exception occurred in a callback", root);
	}

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

	public CallbackException(String message, Exception e) {
		super(message, e);
	}

}










© 2015 - 2025 Weber Informatics LLC | Privacy Policy