mirror of
https://github.com/corda/corda.git
synced 2025-06-15 05:38:14 +00:00
Add ArrayIndexOutOfBoundsException(int) and ClassNotFoundException.getException().
This commit is contained in:
@ -23,6 +23,10 @@ public class ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException {
|
||||
this(null, cause);
|
||||
}
|
||||
|
||||
public ArrayIndexOutOfBoundsException(int idx) {
|
||||
this("Array index out of range: " + idx);
|
||||
}
|
||||
|
||||
public ArrayIndexOutOfBoundsException() {
|
||||
this(null, null);
|
||||
}
|
||||
|
Reference in New Issue
Block a user