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

Field Summary
 
Fields inherited from class java.lang.Error
serialVersionUID
 
Fields inherited from class java.lang.Throwable
 
Constructor Summary
VirtualMachineError()
          Enabled: Constructs a VirtualMachineError with no detail message.
VirtualMachineError(String s)
          Enabled: Constructs a VirtualMachineError with the specified detail message.
 
Methods inherited from class java.lang.Throwable
backtrace, eStack, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, javaStack, leaf, printStackTrace, printStackTrace, printStackTrace, printThrowableOn, setStackTrace, toString, unwrap
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

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?