Exception: java.lang.IndexOutOfBoundsException

Thrown to indicate that an index of some sort (such as to an array, to a string, or to a vector) is out of range.

Applications can subclass this class to indicate similar exceptions.

Authors:
@author Frank Yellin
Version:
@version 1.11, 12/19/03
Since:
@since JDK1.0

Inheritance

Superclass tree: Implements:

Methods

  • IndexOutOfBoundsExceptiontop

    public IndexOutOfBoundsException()
    Constructs an IndexOutOfBoundsException with no detail message.
    Google Code Search
    Stack Overflow
  • IndexOutOfBoundsExceptiontop

    public IndexOutOfBoundsException(String s)
    Constructs an IndexOutOfBoundsException with the specified detail message.
    Parameters:
    @param s the detail message.
    Google Code Search
    Stack Overflow