KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hibernate > exception > GenericJDBCException


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 JavaDoc;
7
8 /**
9  * Generic, non-specific JDBCException.
10  *
11  * @author Steve Ebersole
12  */

13 public class GenericJDBCException extends JDBCException {
14     public GenericJDBCException(String JavaDoc string, SQLException JavaDoc root) {
15         super( string, root );
16     }
17
18     public GenericJDBCException(String JavaDoc string, SQLException JavaDoc root, String JavaDoc sql) {
19         super( string, root, sql );
20     }
21 }
22
Popular Tags