1 package org.hibernate.exception; 3 4 import org.hibernate.JDBCException; 5 6 import java.sql.SQLException ; 7 8 14 public class SQLGrammarException extends JDBCException { 15 20 public SQLGrammarException(String message, SQLException root) { 21 super( message, root ); 22 } 23 24 30 public SQLGrammarException(String message, SQLException root, String sql) { 31 super( message, root, sql ); 32 } 33 } 34 | Popular Tags |