Package java.lang
Class VerifyError
java.lang.Object
java.lang.Throwable
java.lang.Error
java.lang.LinkageError
java.lang.VerifyError
- All Implemented Interfaces:
Serializable
public class VerifyError extends LinkageError
Thrown when the VM notices that an attempt is made to load a
class which does not pass the class verification phase.
- See Also:
- Serialized Form
-
Constructor Summary
Constructors Constructor Description VerifyError()Constructs a newVerifyErrorthat includes the current stack trace.VerifyError(String detailMessage)Constructs a newVerifyErrorwith the current stack trace and the specified detail message. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
VerifyError
public VerifyError()Constructs a newVerifyErrorthat includes the current stack trace. -
VerifyError
Constructs a newVerifyErrorwith the current stack trace and the specified detail message.- Parameters:
detailMessage- the detail message for this exception.
-