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

Class java.lang.InternalError

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

public class InternalError
extends VirtualMachineError
Signals that an internal error has occurred.
Version:
1.11, 08/11/95

Constructor Index

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

Constructors

 o InternalError
  public InternalError()
Constructs an InternalError with no detail message. A detail message is a String that describes this particular exception.

 o InternalError

  public InternalError(String s)
Constructs an InternalError with the specified detail message. A detail message is a String that describes this particular exception.
Parameters:
s - the detail message


All Packages    This Package    Previous    Next