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

org.hibernate.cfg.RecoverableException Maven / Gradle / Ivy

There is a newer version: 3.5.6-Final
Show newest version
//$
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 );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy