1 package org.hibernate.exception; 3 4 import org.hibernate.JDBCException; 5 6 import java.sql.SQLException ; 7 8 14 public class JDBCConnectionException extends JDBCException { 15 public JDBCConnectionException(String string, SQLException root) { 16 super( string, root ); 17 } 18 19 public JDBCConnectionException(String string, SQLException root, String sql) { 20 super( string, root, sql ); 21 } 22 } 23 | Popular Tags |