mirror of
https://github.com/corda/corda.git
synced 2025-06-13 12:48:18 +00:00
quick sketch of java/io/*
This commit is contained in:
19
classpath/java/io/IOException.java
Normal file
19
classpath/java/io/IOException.java
Normal file
@ -0,0 +1,19 @@
|
||||
package java.io;
|
||||
|
||||
public class IOException extends Exception {
|
||||
public IOException(String message, Throwable cause) {
|
||||
super(message, cause);
|
||||
}
|
||||
|
||||
public IOException(String message) {
|
||||
this(message, null);
|
||||
}
|
||||
|
||||
public IOException(Throwable cause) {
|
||||
this(null, cause);
|
||||
}
|
||||
|
||||
public IOException() {
|
||||
this(null, null);
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user