sqlgrammarexception.java

来自「介绍了hibernate的入门有一些基本常用的事例」· Java 代码 · 共 34 行

JAVA
34
字号
// $Id: SQLGrammarException.java,v 1.2 2004/11/21 00:11:27 pgmjsd Exp $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) {		super( message, root );	}	/**	 * Constructor for JDBCException.	 *	 * @param message Optional message.	 * @param root    The underlying exception.	 */	public SQLGrammarException(String message, SQLException root, String sql) {		super( message, root, sql );	}}

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?