1 *java.lang.ArrayIndexOutOfBoundsException* *ArrayIndexOutOfBoundsException* Thro
3 public class ArrayIndexOutOfBoundsException
4 extends |java.lang.IndexOutOfBoundsException|
6 |java.lang.ArrayIndexOutOfBoundsException_Description|
7 |java.lang.ArrayIndexOutOfBoundsException_Fields|
8 |java.lang.ArrayIndexOutOfBoundsException_Constructors|
9 |java.lang.ArrayIndexOutOfBoundsException_Methods|
11 ================================================================================
13 *java.lang.ArrayIndexOutOfBoundsException_Constructors*
14 |java.lang.ArrayIndexOutOfBoundsException()|Constructs an ArrayIndexOutOfBounds
15 |java.lang.ArrayIndexOutOfBoundsException(int)|Constructs a new ArrayIndexOutOf
16 |java.lang.ArrayIndexOutOfBoundsException(String)|Constructs an ArrayIndexOutOf
18 *java.lang.ArrayIndexOutOfBoundsException_Description*
20 Thrown to indicate that an array has been accessed with an illegal index. The
21 index is either negative or greater than or equal to the size of the array.
24 *java.lang.ArrayIndexOutOfBoundsException()*
26 public ArrayIndexOutOfBoundsException()
28 Constructs an ArrayIndexOutOfBoundsException with no detail message.
31 *java.lang.ArrayIndexOutOfBoundsException(int)*
33 public ArrayIndexOutOfBoundsException(int index)
35 Constructs a new ArrayIndexOutOfBoundsException class with an argument
36 indicating the illegal index.
38 index - the illegal index.
40 *java.lang.ArrayIndexOutOfBoundsException(String)*
42 public ArrayIndexOutOfBoundsException(java.lang.String s)
44 Constructs an ArrayIndexOutOfBoundsException class with the specified detail
47 s - the detail message.