Class java.lang.InternalError
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.lang.InternalError

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

public class InternalError
extends VirtualMachineError
Thrown to indicate some unexpected internal error has occurred in the Java Virtual Machine.

Version:
1.14, 07/01/98
Author:
unascribed
Since:
JDK1.0

Constructor Index

 o java.lang.InternalError()
Constructs an InternalError with no detail message.
 o java.lang.InternalError(String)
Constructs an InternalError with the specified detail message.

Constructors

 o InternalError
public InternalError()
Constructs an InternalError with no detail message.

Since:
JDK1.0
 o InternalError
public InternalError(String s)
Constructs an InternalError with the specified detail message.

Parameters:
s - the detail message.
Since:
JDK1.0

All Packages  Class Hierarchy  This Package  Previous  Next  Index