java.lang
Class UnknownError

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

public class UnknownError
extends VirtualMachineError

Signals that an unknown but serious exception has occurred.


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

UnknownError

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


UnknownError

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

Parameters:
s - the detail message