01: //$Id: MappingException.java 3890 2004-06-03 16:31:32Z steveebersole $
02: package org.hibernate;
03:
04: /**
05: * An exception that usually occurs at configuration time, rather
06: * than runtime, as a result of something screwy in the O-R mappings.
07: *
08: * @author Gavin King
09: */
10:
11: public class MappingException extends HibernateException {
12:
13: public MappingException(String msg, Throwable root) {
14: super (msg, root);
15: }
16:
17: public MappingException(Throwable root) {
18: super (root);
19: }
20:
21: public MappingException(String s) {
22: super(s);
23: }
24:
25: }
|