mirror of
https://github.com/corda/corda.git
synced 2024-12-29 09:18:58 +00:00
20 lines
368 B
Java
20 lines
368 B
Java
package java.lang;
|
|
|
|
public class RuntimeException extends Exception {
|
|
public RuntimeException(String message, Throwable cause) {
|
|
super(message, cause);
|
|
}
|
|
|
|
public RuntimeException(String message) {
|
|
this(message, null);
|
|
}
|
|
|
|
public RuntimeException(Throwable cause) {
|
|
this(null, cause);
|
|
}
|
|
|
|
public RuntimeException() {
|
|
this(null, null);
|
|
}
|
|
}
|