corda/classpath/java/lang/IndexOutOfBoundsException.java

20 lines
420 B
Java
Raw Normal View History

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