start page | rating of books | rating of authors | reviews | copyrights

Java in a Nutshell

Previous Chapter 25
The java.lang Package
Next
 

25.48 java.lang.OutOfMemoryError (JDK 1.0)

Signals that the interpreter has run out of memory (and that garbage collection is unable to free any memory).

public class OutOfMemoryError extends VirtualMachineError {
    // Public Constructors
            public OutOfMemoryError();
            public OutOfMemoryError(String s);
}

Hierarchy:

Object->Throwable(Serializable)->Error->VirtualMachineError->OutOfMemoryError


Previous Home Next
java.lang.Object (JDK 1.0) Book Index java.lang.Process (JDK 1.0)

Java in a Nutshell Java Language Reference Java AWT Java Fundamental Classes Exploring Java