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

org.hibernate.AnnotationException Maven / Gradle / Ivy

There is a newer version: 3.5.6-Final
Show newest version
//$Id: AnnotationException.java 14736 2008-06-04 14:23:42Z hardy.ferentschik $
package org.hibernate;

/**
 * Annotation related exception.
 * The EJB3 EG will probably set a generic exception.
 * I'll then use this one.
 *
 * @author Emmanuel Bernard
 */
public class AnnotationException extends MappingException {

	public AnnotationException(String msg, Throwable root) {
		super( msg, root );
	}

	public AnnotationException(Throwable root) {
		super( root );
	}

	public AnnotationException(String s) {
		super( s );
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy