Class InvalidResultSetAccessException

All Implemented Interfaces:
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:
  • Constructor Details

    • InvalidResultSetAccessException

      public InvalidResultSetAccessException(String task, String sql, SQLException ex)
      Constructor for InvalidResultSetAccessException.
      Parameters:
      task - name of current task
      sql - the offending SQL statement
      ex - the root cause
    • InvalidResultSetAccessException

      public InvalidResultSetAccessException(SQLException ex)
      Constructor for InvalidResultSetAccessException.
      Parameters:
      ex - the root cause
  • Method Details

    • getSQLException

      public SQLException getSQLException()
      Return the wrapped SQLException.
    • getSql

      @Nullable public String getSql()
      Return the SQL that caused the problem.
      Returns:
      the offending SQL, if known