mirror of
https://github.com/corda/corda.git
synced 2025-01-01 02:36:44 +00:00
20 lines
341 B
Java
20 lines
341 B
Java
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);
|
|
}
|
|
}
|