Class VirtualMachineError
java.lang.Object
java.lang.Throwable
java.lang.Error
java.lang.VirtualMachineError
- Direct Known Subclasses:
OutOfMemoryError
Thrown to indicate that the Java Virtual Machine is broken or has run out of resources necessary for it to continue operating.
Since: JDK1.0, CLDC 1.0
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a VirtualMachineError with no detail message.Constructs a VirtualMachineError with the specified detail message. -
Method Summary
Methods inherited from class Throwable
addSuppressed, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, setStackTrace, toStringMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
VirtualMachineError
public VirtualMachineError()Constructs a VirtualMachineError with no detail message. -
VirtualMachineError
Constructs a VirtualMachineError with the specified detail message. s - the detail message.
-