ArrayIndexOutOfBoundsExceptionNameArrayIndexOutOfBoundsExceptionSynopsis
DescriptionAn ArrayIndexOutOfBoundsException is thrown when an out-of-range index is detected by an array object. An out-of-range index occurs when the index is less than zero or greater than or equal to the size of the array. Class Summary
public class java.lang.ArrayIndexOutOfBoundsException extends java.lang.IndexOutOfBoundsException { // Constructors public ArrayIndexOutOfBoundsException(); public ArrayIndexOutOfBoundsException(int index); public ArrayIndexOutOfBoundsException(String s); } ConstructorsArrayIndexOutOfBoundsExceptionpublic ArrayIndexOutOfBoundsException()
public ArrayIndexOutOfBoundsException(int index)
public ArrayIndexOutOfBoundsException(String s)
Inherited Methods
See AlsoException, IndexOutOfBoundsException, RuntimeException, Throwable |
|