VirtualMachineErrorpublic abstract class VirtualMachineError extends Error {@code VirtualMachineError} is the superclass of all error classes that occur
during the operation of the virtual machine. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public VirtualMachineError()Constructs a new {@code VirtualMachineError} that includes the current
stack trace.
super();
| public VirtualMachineError(String detailMessage)Constructs a new {@code VirtualMachineError} with the current stack trace
and the specified detail message.
super(detailMessage);
|
|