Signals that an array index less than zero or greater than or equal to the array size has been used.
public class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException { // Public Constructors public ArrayIndexOutOfBoundsException(); public ArrayIndexOutOfBoundsException(int index); public ArrayIndexOutOfBoundsException(String s); }
Object->Throwable(Serializable)->Exception->RuntimeException-> IndexOutOfBoundsException->ArrayIndexOutOfBoundsException
Array.get(), Array.getBoolean(), Array.getByte(), Array.getChar(), Array.getDouble(), Array.getFloat(), Array.getInt(), Array.getLong(), Array.getShort(), Array.set(), Array.setBoolean(), Array.setByte(), Array.setChar(), Array.setDouble(), Array.setFloat(), Array.setInt(), Array.setLong(), Array.setShort()