corda/classpath/java/lang/ArrayIndexOutOfBoundsException.java

20 lines
445 B
Java
Raw Normal View History

2007-07-07 23:47:35 +00:00
package java.lang;
public class ArrayIndexOutOfBoundsException extends RuntimeException {
public ArrayIndexOutOfBoundsException(String message, Throwable cause) {
super(message, cause);
}
public ArrayIndexOutOfBoundsException(String message) {
this(message, null);
}
public ArrayIndexOutOfBoundsException(Throwable cause) {
this(null, cause);
}
public ArrayIndexOutOfBoundsException() {
this(null, null);
}
}