org.springframework.jdbc
Class InvalidResultSetAccessException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.springframework.core.NestedRuntimeException
org.springframework.dao.DataAccessException
org.springframework.dao.NonTransientDataAccessException
org.springframework.dao.InvalidDataAccessResourceUsageException
org.springframework.jdbc.InvalidResultSetAccessException
- All Implemented Interfaces:
- java.io.Serializable
public class InvalidResultSetAccessException
- extends InvalidDataAccessResourceUsageException
Exception thrown when a ResultSet has been accessed in an invalid fashion.
Such exceptions always have a java.sql.SQLException
root cause.
This typically happens when an invalid ResultSet column index or name
has been specified. Also thrown by disconnected SqlRowSets.
- Since:
- 1.2
- Author:
- Juergen Hoeller
- See Also:
BadSqlGrammarException
,
SqlRowSet
,
Serialized Form
Field Summary |
private java.lang.String |
sql
|
Method Summary |
java.lang.String |
getSql()
Return the SQL that caused the problem. |
java.sql.SQLException |
getSQLException()
Return the wrapped SQLException. |
Methods inherited from class java.lang.Throwable |
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
sql
private java.lang.String sql
InvalidResultSetAccessException
public InvalidResultSetAccessException(java.lang.String task,
java.lang.String sql,
java.sql.SQLException ex)
- Constructor for InvalidResultSetAccessException.
- Parameters:
task
- name of current tasksql
- the offending SQL statementex
- the root cause
InvalidResultSetAccessException
public InvalidResultSetAccessException(java.sql.SQLException ex)
- Constructor for InvalidResultSetAccessException.
- Parameters:
ex
- the root cause
getSQLException
public java.sql.SQLException getSQLException()
- Return the wrapped SQLException.
getSql
public java.lang.String getSql()
- Return the SQL that caused the problem.
- Returns:
- the offending SQL, if known