1 package org.hibernate.exception; 3 4 import org.hibernate.JDBCException; 5 6 import java.sql.SQLException ; 7 8 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 } 22 | Popular Tags |