![JAR search and dependency download from the Maven repository](/logo.png)
org.hibernate.CallbackException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate Show documentation
Show all versions of hibernate Show documentation
Relational Persistence for Java
//$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