FileDocCategorySizeDatePackage
CallbackException.javaAPI DocHibernate 3.2.5590Wed Aug 11 04:10:46 BST 2004org.hibernate

CallbackException

public class CallbackException extends HibernateException
Should be thrown by persistent objects from Lifecycle or Interceptor callbacks.
see
Lifecycle
see
Interceptor
author
Gavin King

Fields Summary
Constructors Summary
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);
	
Methods Summary