java.lang
Class VirtualMachineError
java.lang.Object
|
+--java.lang.Throwable
|
+--java.lang.Error
|
+--java.lang.VirtualMachineError
- All Implemented Interfaces:
- Serializable
- Direct Known Subclasses:
- InternalError, OutOfMemoryError, StackOverflowError, UnknownError
- public abstract class VirtualMachineError
- extends Error
Untamed: 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
- Version:
- 1.12, 12/03/01
- Author:
- Frank Yellin
- See Also:
- Serialized Form
Fields inherited from class java.lang.Throwable |
|
Methods inherited from class java.lang.Throwable |
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap |
VirtualMachineError
public VirtualMachineError()
- Enabled: Constructs a
VirtualMachineError
with no detail message.
VirtualMachineError
public VirtualMachineError(String s)
- Enabled: Constructs a
VirtualMachineError
with the specified
detail message.
- Parameters:
s
- the detail message.
comments?