java.lang
Class VerifyError

java.lang.Object
  extended byjava.lang.Throwable
      extended byjava.lang.Error
          extended byjava.lang.LinkageError
              extended byjava.lang.VerifyError
All Implemented Interfaces:
Serializable

public class VerifyError
extends LinkageError

This error is 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
VerifyError()
          Constructs a new instance of this class with its walkback filled in.
VerifyError(java.lang.String detailMessage)
          Constructs a new instance of this class with its walkback and message filled in.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

VerifyError

public VerifyError()
Constructs a new instance of this class with its walkback filled in.


VerifyError

public VerifyError(java.lang.String detailMessage)
Constructs a new instance of this class with its walkback and message filled in.

Parameters:
detailMessage - String The detail message for the exception.