OutOfMemoryError

public class OutOfMemoryError extends VirtualMachineError

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. 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}.

Public Constructor Summary

OutOfMemoryError()
Constructs an OutOfMemoryError with no detail message.
OutOfMemoryError(String s)
Constructs an OutOfMemoryError with the specified detail message.

Inherited Method Summary

Public Constructors

public OutOfMemoryError ()

Constructs an OutOfMemoryError with no detail message.

public OutOfMemoryError (String s)

Constructs an OutOfMemoryError with the specified detail message.

Parameters
s the detail message.