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

Quick Search    Search Deep

Source code: org/hibernate/HibernateException.java


1   //$Id: HibernateException.java,v 1.2 2005/02/12 03:09:19 oneovthafew Exp $
2   package org.hibernate;
3   
4   import org.hibernate.exception.NestableRuntimeException;
5   
6   /**
7    * Any exception that occurs inside the persistence layer
8    * or JDBC driver. <tt>SQLException</tt>s are always wrapped
9    * by instances of <tt>JDBCException</tt>.
10   *
11   * @see JDBCException
12   * @author Gavin King
13   */
14  
15  public class HibernateException extends NestableRuntimeException {
16  
17    public HibernateException(Throwable root) {
18      super(root);
19    }
20  
21    public HibernateException(String string, Throwable root) {
22      super(string, root);
23    }
24  
25    public HibernateException(String s) {
26      super(s);
27    }
28  }
29  
30  
31  
32  
33  
34