java.lang
Class VirtualMachineError

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Error
              |
              +--java.lang.VirtualMachineError
Direct Known Subclasses:
InternalError, OutOfMemoryError, StackOverflowError, UnknownError

public abstract class VirtualMachineError
extends Error

A VirtualMachineError indicates that the virtual machine is broken or has run out of resources.


Constructor Summary
VirtualMachineError()
          Constructs a VirtualMachineError with no detail message.
VirtualMachineError(String s)
          Constructs a VirtualMachineError with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getMessage, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

VirtualMachineError

public VirtualMachineError()
Constructs a VirtualMachineError with no detail message. A detail message is a String that describes this particular exception.


VirtualMachineError

public VirtualMachineError(String s)
Constructs a VirtualMachineError with the specified detail message. A detail message is a String that describes this particular exception.

Parameters:
s - the detail message