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

Quick Search    Search Deep

Source code: org/hibernate/exception/GenericJDBCException.java


1   // $Id: GenericJDBCException.java,v 1.2 2004/11/21 00:11:27 pgmjsd Exp $
2   package org.hibernate.exception;
3   
4   import org.hibernate.JDBCException;
5   
6   import java.sql.SQLException;
7   
8   /**
9    * Generic, non-specific JDBCException.
10   *
11   * @author Steve Ebersole
12   */
13  public class GenericJDBCException extends JDBCException {
14    public GenericJDBCException(String string, SQLException root) {
15      super( string, root );
16    }
17  
18    public GenericJDBCException(String string, SQLException root, String sql) {
19      super( string, root, sql );
20    }
21  }