FileDocCategorySizeDatePackage
OutOfMemoryError.javaAPI DocJava SE 5 API872Fri Aug 26 14:57:04 BST 2005java.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.
author
unascribed
version
1.21, 12/19/03
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