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