Most visited

Recently visited

Added in API level 1

UnknownError

public class UnknownError
extends VirtualMachineError

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


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.

Inherited methods

From class java.lang.Throwable
From class java.lang.Object

Public constructors

UnknownError

Added in API level 1
UnknownError ()

Constructs an UnknownError with no detail message.

UnknownError

Added in API level 1
UnknownError (String s)

Constructs an UnknownError with the specified detail message.

Parameters
s String: the detail message.

Hooray!