InternalErrorpublic class InternalError extends VirtualMachineError Thrown when the virtual machine notices that it has gotten into an undefined
state. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public InternalError()Constructs a new {@code InternalError} that includes the current stack
trace.
super();
| public InternalError(String detailMessage)Constructs a new {@code InternalError} with the current stack trace and
the specified detail message.
super(detailMessage);
|
|