UnknownErrorpublic class UnknownError extends VirtualMachineError Thrown when the virtual machine must throw an error which does not match any
known exceptional condition. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public UnknownError()Constructs a new {@code UnknownError} that includes the current stack
trace.
super();
| public UnknownError(String detailMessage)Constructs a new {@code UnknownError} with the current stack trace and
the specified detail message.
super(detailMessage);
|
|