Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Class java.lang.VirtualMachineError

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Error
                   |
                   +----java.lang.VirtualMachineError

public abstract class VirtualMachineError
extends Error
super class of:
InternalError, OutOfMemoryError, StackOverflowError, UnknownError

Thrown to indicate that the Java Virtual Machine is broken or has run out of resources necessary for it to continue operating.


Constructor Index

VirtualMachineError()
Constructs a VirtualMachineError with no detail message.
VirtualMachineError(String)
Constructs a VirtualMachineError with the specified detail message.

Constructors

VirtualMachineError
 public VirtualMachineError()
Constructs a VirtualMachineError with no detail message.

VirtualMachineError
 public VirtualMachineError(String s)
Constructs a VirtualMachineError with the specified detail message.

Parameters:
s - the detail message.

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)