public class ArrayIndexOutOfBoundsException
- Object
- Throwable
- Exception
- RuntimeException
- IndexOutOfBoundsException
- ArrayIndexOutOfBoundsException
Thrown to indicate that an array has been accessed with an illegal index. The index is either negative or greater than or equal to the size of the array.
Since: JDK1.0, CLDC 1.0
Constructors
public ArrayIndexOutOfBoundsException() | Constructs an ArrayIndexOutOfBoundsException with no detail message. |
public ArrayIndexOutOfBoundsException(int index) | Constructs a new ArrayIndexOutOfBoundsException class with an argument indicating the illegal index. |
public ArrayIndexOutOfBoundsException(String s) | Constructs an ArrayIndexOutOfBoundsException class with the specified detail message. |
Inherited methods
Constructor details
ArrayIndexOutOfBoundsException
public ArrayIndexOutOfBoundsException()Constructs an ArrayIndexOutOfBoundsException with no detail message.
ArrayIndexOutOfBoundsException
public ArrayIndexOutOfBoundsException(int index)Constructs a new ArrayIndexOutOfBoundsException class with an argument indicating the illegal index.
index - the illegal index.
ArrayIndexOutOfBoundsException
public ArrayIndexOutOfBoundsException(String s)Constructs an ArrayIndexOutOfBoundsException class with the specified detail message.
s - the detail message.