java.lang.VirtualMachineError (JDK 1.0)

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.

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

Hierarchy:

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

Extended By:

InternalError, OutOfMemoryError, StackOverflowError, UnknownError