org.hibernate.cfg.RecoverableException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
//$
package org.hibernate.cfg;
import org.hibernate.AnnotationException;
/**
* Should neven be exposed to the client
* An exception that wrap an underlying exception whith the hope
* subsequent processing will recover from it.
*
* @author Emmanuel Bernard
*/
public class RecoverableException extends AnnotationException {
public RecoverableException(String msg, Throwable root) {
super( msg, root );
}
public RecoverableException(Throwable root) {
super( root );
}
public RecoverableException(String s) {
super( s );
}
}