mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +00:00
20 lines
445 B
Java
20 lines
445 B
Java
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);
|
|
}
|
|
}
|