FileDocCategorySizeDatePackage
OutOfMemoryError.javaAPI DocphoneME MR2 API (J2ME)1744Wed May 02 17:59:54 BST 2007java.lang

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.
version
1.17, 12/04/99 (CLDC 1.0, Spring 2000)
since
JDK1.0

Fields Summary
Constructors Summary
public OutOfMemoryError()
Constructs an OutOfMemoryError with no detail message.

    super();
    
public OutOfMemoryError(String s)
Constructs an OutOfMemoryError with the specified detail message.

param
s the detail message.

    super(s);
    
Methods Summary