org.springframework.jdbc
Class BadSqlGrammarException

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Exception
          extended byjava.lang.RuntimeException
              extended byorg.springframework.core.NestedRuntimeException
                  extended byorg.springframework.dao.DataAccessException
                      extended byorg.springframework.dao.InvalidDataAccessResourceUsageException
                          extended byorg.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:
Serialized Form

Field Summary
 
Fields inherited from class java.lang.RuntimeException
 
Constructor Summary
BadSqlGrammarException(String task, String sql, SQLException ex)
          Constructor for BadSqlGrammarException.
 
Method Summary
 String getSql()
          Return the SQL that caused the problem.
 SQLException getSQLException()
          Return the wrapped SQLException.
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getCause, getMessage, printStackTrace, printStackTrace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getStackTrace, initCause, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BadSqlGrammarException

public BadSqlGrammarException(String task,
                              String sql,
                              SQLException ex)
Constructor for BadSqlGrammarException.

Parameters:
task - name of current task (may be null)
sql - the offending SQL statement
ex - the root cause
Method Detail

getSQLException

public SQLException getSQLException()
Return the wrapped SQLException.

Returns:
the wrapped SQLException

getSql

public String getSql()
Return the SQL that caused the problem.

Returns:
the offdending SQL


Copyright (C) 2003-2004 The Spring Framework Project.