Open Source Repository

Home /hibernate/hibernate-3.2.4.ga | Repository Home



org/hibernate/exception/SQLGrammarException.java
// $Id: SQLGrammarException.java 4782 2004-11-21 00:11:27Z pgmjsd $
package org.hibernate.exception;

import org.hibernate.JDBCException;

import java.sql.SQLException;

/**
 * Implementation of JDBCException indicating that the SQL sent to the database
 * server was invalid (syntax error, invalid object references, etc).
 *
 @author Steve Ebersole
 */
public class SQLGrammarException extends JDBCException {
  /**
   * Constructor for JDBCException.
   *
   @param root The underlying exception.
   */
  public SQLGrammarException(String message, SQLException root) {
    supermessage, root );
  }

  /**
   * Constructor for JDBCException.
   *
   @param message Optional message.
   @param root    The underlying exception.
   */
  public SQLGrammarException(String message, SQLException root, String sql) {
    supermessage, root, sql );
  }
}