VerifyErrorpublic class VerifyError extends LinkageError Thrown when the virtual machine notices that an attempt is made to load a
class which does not pass the class verification phase. |
Fields Summary |
---|
private static final long | serialVersionUID |
Constructors Summary |
---|
public VerifyError()Constructs a new {@code VerifyError} that includes the current stack
trace.
super();
| public VerifyError(String detailMessage)Constructs a new {@code VerifyError} with the current stack trace and the
specified detail message.
super(detailMessage);
|
|