KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > MappingException


1 //$Id: MappingException.java,v 1.1 2004/06/03 16:30:04 steveebersole Exp $
2
package org.hibernate;
3
4 /**
5  * An exception that usually occurs at configuration time, rather
6  * than runtime, as a result of something screwy in the O-R mappings.
7  *
8  * @author Gavin King
9  */

10
11 public class MappingException extends HibernateException {
12
13     public MappingException(String JavaDoc msg, Throwable JavaDoc root) {
14         super( msg, root );
15     }
16
17     public MappingException(Throwable JavaDoc root) {
18         super(root);
19     }
20
21     public MappingException(String JavaDoc s) {
22         super(s);
23     }
24
25 }
26
27
28
29
30
31
32
Popular Tags