Class RowOutOfBoundsException

All Implemented Interfaces:
Serializable

public class RowOutOfBoundsException extends DataSetException
Signals that a requested row index is outside a table's valid range.
Since:
Feb 17, 2002
Version:
$Revision$
Author:
Manuel Laflamme
See Also:
  • Constructor Details

    • RowOutOfBoundsException

      public RowOutOfBoundsException()
      Default constructor.
    • RowOutOfBoundsException

      public RowOutOfBoundsException(String msg)
      Constructs a RowOutOfBoundsException with the specified detail message.
      Parameters:
      msg - the detail message.
    • RowOutOfBoundsException

      public RowOutOfBoundsException(String msg, Throwable e)
      Constructs a RowOutOfBoundsException with the specified detail message and cause.
      Parameters:
      msg - the detail message.
      e - the cause.
    • RowOutOfBoundsException

      public RowOutOfBoundsException(Throwable e)
      Constructs a RowOutOfBoundsException with the specified cause.
      Parameters:
      e - the cause.
  • Method Details

    • fillInStackTrace

      public Throwable fillInStackTrace()
      Suppresses stack trace capture. This exception is thrown once per table scan as normal end-of-rows control flow, not as an error condition, so capturing a stack trace on every throw is wasted work.
      Overrides:
      fillInStackTrace in class Throwable
      Returns:
      This exception, without a captured stack trace.