FileDocCategorySizeDatePackage
OutOfMemoryError.javaAPI DocAndroid 1.5 API1778Wed May 06 22:41:04 BST 2009java.lang

OutOfMemoryError

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 virtual machine.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public OutOfMemoryError()
Constructs a new {@code OutOfMemoryError} that includes the current stack trace.

since
Android 1.0


                        
      
        super();
    
public OutOfMemoryError(String detailMessage)
Constructs a new {@code OutOfMemoryError} with the current stack trace and the specified detail message.

param
detailMessage the detail message for this error.
since
Android 1.0

        super(detailMessage);
    
Methods Summary