java.lang.Object | |||||
↳ | java.lang.Throwable | ||||
↳ | java.lang.Exception | ||||
↳ | java.lang.RuntimeException | ||||
↳ | java.lang.IndexOutOfBoundsException | ||||
↳ | java.lang.ArrayIndexOutOfBoundsException |
Thrown when the an array is indexed with a value less than zero, or greater than or equal to the size of the array.
Public Constructors | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Constructs a new
ArrayIndexOutOfBoundsException that includes the
current stack trace.
| |||||||||||
Constructs a new
ArrayIndexOutOfBoundsException with the current
stack trace and a detail message that is based on the specified invalid
index .
| |||||||||||
Constructs a new
ArrayIndexOutOfBoundsException with the current
stack trace and the specified detail message.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
From class
java.lang.Throwable
| |||||||||||
From class
java.lang.Object
|
Constructs a new ArrayIndexOutOfBoundsException
that includes the
current stack trace.
Constructs a new ArrayIndexOutOfBoundsException
with the current
stack trace and a detail message that is based on the specified invalid
index
.
index | the invalid index. |
---|
Constructs a new ArrayIndexOutOfBoundsException
with the current
stack trace and the specified detail message.
detailMessage | the detail message for this exception. |
---|