Package org.hibernate.exception
Class SQLGrammarException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.persistence.PersistenceException
-
- org.hibernate.HibernateException
-
- org.hibernate.JDBCException
-
- org.hibernate.exception.SQLGrammarException
-
- All Implemented Interfaces:
java.io.Serializable
public class SQLGrammarException extends JDBCException
Implementation of JDBCException indicating that the SQL sent to the database server was invalid (syntax error, invalid object references, etc).- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description SQLGrammarException(java.lang.String message, java.sql.SQLException root)
Constructor for JDBCException.SQLGrammarException(java.lang.String message, java.sql.SQLException root, java.lang.String sql)
Constructor for JDBCException.
-
Method Summary
-
Methods inherited from class org.hibernate.JDBCException
getErrorCode, getSQL, getSQLException, getSQLState
-
-
-
-
Constructor Detail
-
SQLGrammarException
public SQLGrammarException(java.lang.String message, java.sql.SQLException root)
Constructor for JDBCException.- Parameters:
root
- The underlying exception.
-
SQLGrammarException
public SQLGrammarException(java.lang.String message, java.sql.SQLException root, java.lang.String sql)
Constructor for JDBCException.- Parameters:
message
- Optional message.root
- The underlying exception.
-
-