package java.lang; public class OutOfMemoryError extends Error { public OutOfMemoryError() {} public OutOfMemoryError(String msg) { super(msg); } }