Class java.lang.ArrayIndexOutOfBoundsException
All Packages    This Package    Previous    Next

Class java.lang.ArrayIndexOutOfBoundsException

java.lang.Object
   |
   +----java.lang.Exception
           |
           +----java.lang.ArrayIndexOutOfBoundsException

public class ArrayIndexOutOfBoundsException
extends Exception
Signals that an invalid array index has been used.
Version:
1.8, 31 Jan 1995

ArrayIndexOutOfBoundsException()
Constructor.
ArrayIndexOutOfBoundsException(int)
Constructor with the offending index.
ArrayIndexOutOfBoundsException(String)
Constructor with a detail message.

ArrayIndexOutOfBoundsException
  public ArrayIndexOutOfBoundsException()
Constructor.

ArrayIndexOutOfBoundsException

  public ArrayIndexOutOfBoundsException(int index)
Constructor with the offending index.
Parameters:
index - The index

ArrayIndexOutOfBoundsException

  public ArrayIndexOutOfBoundsException(String s)
Constructor with a detail message.
Parameters:
s - The text of the message.


All Packages    This Package    Previous    Next