public class

UnknownError

extends VirtualMachineError
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Error
       ↳ java.lang.VirtualMachineError
         ↳ java.lang.UnknownError

Class Overview

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

Summary

Public Constructors
UnknownError()
Constructs an UnknownError with no detail message.
UnknownError(String s)
Constructs an UnknownError with the specified detail message.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public UnknownError ()

Constructs an UnknownError with no detail message.

public UnknownError (String s)

Constructs an UnknownError with the specified detail message.

Parameters
s the detail message.