java.lang
public class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException
int[] i = { 1 };
i[1] = 2;
UNKNOWN: updated to 1.4
| Constructor Summary | |
|---|---|
| ArrayIndexOutOfBoundsException()
Create an exception without a message. | |
| ArrayIndexOutOfBoundsException(String s)
Create an exception with a message.
| |
| ArrayIndexOutOfBoundsException(int index)
Create an exception indicating the illegal index.
| |
Parameters: s the message
Parameters: index the invalid index