KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > AnnotationException


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 Bernard
10  */

11 public class AnnotationException extends MappingException {
12
13     public AnnotationException(String JavaDoc msg, Throwable JavaDoc root) {
14         super(msg, root);
15     }
16
17     public AnnotationException(Throwable JavaDoc root) {
18         super(root);
19     }
20
21     public AnnotationException(String JavaDoc s) {
22         super(s);
23     }
24 }
25
Popular Tags