Team LiB
Previous Section Next Section

VirtualMachineErrorjava.lang

Java 1.0serializable error

An abstract error type that serves as superclass for a group of errors related to the Java Virtual Machine. See InternalError, UnknownError, OutOfMemoryError, and StackOverflowError.

Figure 10-73. java.lang.VirtualMachineError


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

Subclasses

InternalError, OutOfMemoryError, StackOverflowError, UnknownError

    Team LiB
    Previous Section Next Section