Constructors Summary |
---|
public ArrayIndexOutOfBoundsException()Constructs an ArrayIndexOutOfBoundsException with no
detail message.
super();
|
public ArrayIndexOutOfBoundsException(int index)Constructs a new ArrayIndexOutOfBoundsException
class with an argument indicating the illegal index.
super(Integer.toString(index));
|
public ArrayIndexOutOfBoundsException(String s)Constructs an ArrayIndexOutOfBoundsException class
with the specified detail message.
super(s);
|