Class java.lang.InternalError
All Packages Class Hierarchy This Package Previous Next Index
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.
-
InternalError()
- Constructs an InternalError with no detail message.
-
InternalError(String)
- Constructs an InternalError with the specified detail message.
InternalError
public InternalError()
- Constructs an InternalError with no detail message.
A detail message is a String that describes this particular exception.
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 Class Hierarchy This Package Previous Next Index