You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
61 lines
1.2 KiB
61 lines
1.2 KiB
/*
|
|
* Copyright (c) 1994, 2011, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.lang;
|
|
|
|
/**
|
|
* Thrown when the Java Virtual Machine cannot allocate an object
|
|
* because it is out of memory, and no more memory could be made
|
|
* available by the garbage collector.
|
|
*
|
|
* {@code OutOfMemoryError} objects may be constructed by the virtual
|
|
* machine as if {@linkplain Throwable#Throwable(String, Throwable,
|
|
* boolean, boolean) suppression were disabled and/or the stack trace was not
|
|
* writable}.
|
|
*
|
|
* @author unascribed
|
|
* @since JDK1.0
|
|
*/
|
|
public class OutOfMemoryError extends VirtualMachineError {
|
|
private static final long serialVersionUID = 8228564086184010517L;
|
|
|
|
/**
|
|
* Constructs an {@code OutOfMemoryError} with no detail message.
|
|
*/
|
|
public OutOfMemoryError() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructs an {@code OutOfMemoryError} with the specified
|
|
* detail message.
|
|
*
|
|
* @param s the detail message.
|
|
*/
|
|
public OutOfMemoryError(String s) {
|
|
super(s);
|
|
}
|
|
}
|