1 //$Id: AnnotationException.java,v 1.1 2004/09/11 12:07:51 epbernard Exp $2 package org.hibernate;3 4 /**5 * Annotation related exception.6 * The EJB3 EG will probably set a generic exception.7 * I'll then use this one.8 * 9 * @author Emmanuel Bernard10 */11 public class AnnotationException extends MappingException {12 13 public AnnotationException(String msg, Throwable root) {14 super(msg, root);15 }16 17 public AnnotationException(Throwable root) {18 super(root);19 }20 21 public AnnotationException(String s) {22 super(s);23 }24 }25