FileDocCategorySizeDatePackage
SQLGrammarException.javaAPI DocHibernate 3.2.5844Sat Nov 20 17:11:28 GMT 2004org.hibernate.exception

SQLGrammarException

public class SQLGrammarException extends org.hibernate.JDBCException
Implementation of JDBCException indicating that the SQL sent to the database server was invalid (syntax error, invalid object references, etc).
author
Steve Ebersole

Fields Summary
Constructors Summary
public SQLGrammarException(String message, SQLException root)
Constructor for JDBCException.

param
root The underlying exception.

		super( message, root );
	
public SQLGrammarException(String message, SQLException root, String sql)
Constructor for JDBCException.

param
message Optional message.
param
root The underlying exception.

		super( message, root, sql );
	
Methods Summary