mirror of
https://github.com/corda/corda.git
synced 2025-01-09 14:33:30 +00:00
add java.lang.OutOfMemoryError
This commit is contained in:
parent
12fe480f1c
commit
7a262d0578
11
classpath/java/lang/OutOfMemoryError.java
Normal file
11
classpath/java/lang/OutOfMemoryError.java
Normal file
@ -0,0 +1,11 @@
|
|||||||
|
package java.lang;
|
||||||
|
|
||||||
|
public class OutOfMemoryError extends Error {
|
||||||
|
public OutOfMemoryError(String message) {
|
||||||
|
super(message, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public OutOfMemoryError() {
|
||||||
|
this(null);
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user