当前页面:
在线文档首页 >
Spring Framework 2.0.5 API 文档英文版
BadSqlGrammarException (Spring Framework API 2.0) - Spring Framework 2.0.5 API 文档英文版
org.springframework.jdbc
Class BadSqlGrammarException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.dao.DataAccessException
org.springframework.dao.InvalidDataAccessResourceUsageException
org.springframework.jdbc.BadSqlGrammarException
- All Implemented Interfaces:
- Serializable
public class BadSqlGrammarException
- extends InvalidDataAccessResourceUsageException
Exception thrown when SQL specified is invalid. Such exceptions always have
a java.sql.SQLException
root cause.
It would be possible to have subclasses for no such table, no such column etc.
A custom SQLExceptionTranslator could create such more specific exceptions,
without affecting code using this class.
- Author:
- Rod Johnson
- See Also:
InvalidResultSetAccessException
,
Serialized Form
BadSqlGrammarException
public BadSqlGrammarException(String task,
String sql,
SQLException ex)
- Constructor for BadSqlGrammarException.
- Parameters:
task
- name of current tasksql
- the offending SQL statementex
- the root cause
getSQLException
public SQLException getSQLException()
- Return the wrapped SQLException.
getSql
public String getSql()
- Return the SQL that caused the problem.
Copyright © 2002-2007 The Spring Framework.