fixed some formatting typos
[vimdoclet.git] / sample / java.lang.ArrayIndexOutOfBoundsException.txt
blob7558d340bf8078b7e7c8dd5d0a549caa5764a1e2
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. 
25 *java.lang.ArrayIndexOutOfBoundsException()*
27 public ArrayIndexOutOfBoundsException()
29 Constructs an ArrayIndexOutOfBoundsException with no detail message. 
32 *java.lang.ArrayIndexOutOfBoundsException(int)*
34 public ArrayIndexOutOfBoundsException(int index)
36 Constructs a new ArrayIndexOutOfBoundsException class with an argument 
37 indicating the illegal index. 
39     index - the illegal index. 
41 *java.lang.ArrayIndexOutOfBoundsException(String)*
43 public ArrayIndexOutOfBoundsException(java.lang.String s)
45 Constructs an ArrayIndexOutOfBoundsException class with the specified detail 
46 message. 
48     s - the detail message.