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); }
Object->Throwable(Serializable)->Error->VirtualMachineError
InternalError, OutOfMemoryError, StackOverflowError, UnknownError