java.lang
Class InternalError

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

public class InternalError
extends VirtualMachineError

Signals that an internal error has occurred.


Constructor Summary
InternalError()
          Constructs an InternalError with no detail message.
InternalError(String s)
          Constructs an InternalError 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

InternalError

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


InternalError

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

Parameters:
s - the detail message