Constructors Summary |
---|
public ArrayIndexOutOfBoundsException()Constructs a new {@code ArrayIndexOutOfBoundsException} that includes the
current stack trace.
super();
|
public ArrayIndexOutOfBoundsException(int index)Constructs a new {@code ArrayIndexOutOfBoundsException} with the current
stack trace and a detail message that is based on the specified invalid
{@code index}.
super(Msg.getString("K0052", index)); //$NON-NLS-1$
|
public ArrayIndexOutOfBoundsException(String detailMessage)Constructs a new {@code ArrayIndexOutOfBoundsException} with the current
stack trace and the specified detail message.
super(detailMessage);
|