mirror of
https://github.com/corda/corda.git
synced 2025-01-09 14:33:30 +00:00
12 lines
217 B
Java
12 lines
217 B
Java
package java.lang;
|
|
|
|
public class ExceptionInInitializerError extends Error {
|
|
public ExceptionInInitializerError(String message) {
|
|
super(message);
|
|
}
|
|
|
|
public ExceptionInInitializerError() {
|
|
super();
|
|
}
|
|
}
|