Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: org/hibernate/MappingException.java


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 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  }
26  
27  
28  
29  
30  
31