Package java.lang

Class OutOfMemoryError

All Implemented Interfaces:
Serializable

public class OutOfMemoryError
extends VirtualMachineError
Thrown when a request for memory is made that can not be satisfied using the available platform resources. Such a request may be made by both the running application or by an internal function of the VM.
See Also:
Serialized Form
  • Constructor Details

    • OutOfMemoryError

      public OutOfMemoryError()
      Constructs a new OutOfMemoryError that includes the current stack trace.
    • OutOfMemoryError

      public OutOfMemoryError​(String detailMessage)
      Constructs a new OutOfMemoryError with the current stack trace and the specified detail message.
      Parameters:
      detailMessage - the detail message for this error.