mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
add a bunch of classes to classpath and flesh out a few existing ones
This commit is contained in:
15
classpath/java/lang/ClassNotFoundException.java
Normal file
15
classpath/java/lang/ClassNotFoundException.java
Normal file
@ -0,0 +1,15 @@
|
||||
package java.lang;
|
||||
|
||||
public class ClassNotFoundException extends Exception {
|
||||
public ClassNotFoundException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public ClassNotFoundException(String message) {
|
||||
this(message, null);
|
||||
}
|
||||
|
||||
public ClassNotFoundException() {
|
||||
this(null, null);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user