Class OutOfMemoryError
java.lang.Object
java.lang.Throwable
java.lang.Error
java.lang.VirtualMachineError
java.lang.OutOfMemoryError
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.
Since: JDK1.0, CLDC 1.0
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs an OutOfMemoryError with no detail message.Constructs an OutOfMemoryError with the specified detail message. -
Method Summary
Methods inherited from class Throwable
addSuppressed, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toString
-
Constructor Details
-
OutOfMemoryError
public OutOfMemoryError()Constructs an OutOfMemoryError with no detail message. -
OutOfMemoryError
Constructs an OutOfMemoryError with the specified detail message. s - the detail message.
-