public class

InternalError

extends VirtualMachineError
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Error
       ↳ java.lang.VirtualMachineError
         ↳ java.lang.InternalError
Known Direct Subclasses

Class Overview

Thrown to indicate some unexpected internal error has occurred in the Java Virtual Machine.

Summary

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

Public Constructors

public InternalError ()

Constructs an InternalError with no detail message.

public InternalError (String s)

Constructs an InternalError with the specified detail message.

Parameters
s the detail message.