Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Class java.lang.UnknownError

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

public class UnknownError
extends VirtualMachineError

Thrown when an unknown but serious exception has occurred in the Java Virtual Machine.


Constructor Index

UnknownError()
Constructs an UnknownError with no detail message.
UnknownError(String)
Constructs an UnknownError with the specified detail message.

Constructors

UnknownError
 public UnknownError()
Constructs an UnknownError with no detail message.

UnknownError
 public UnknownError(String s)
Constructs an UnknownError with the specified detail message.

Parameters:
s - the detail message.

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)