⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 sqlgrammarexception.java

📁 一个Java持久层类库
💻 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) {		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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -