FileDocCategorySizeDatePackage
VerifyError.javaAPI DocAndroid 1.5 API1650Wed May 06 22:41:04 BST 2009java.lang

VerifyError

public 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.
since
Android 1.0

Fields Summary
private static final long
serialVersionUID
Constructors Summary
public VerifyError()
Constructs a new {@code VerifyError} that includes the current stack trace.

since
Android 1.0


                        
      
        super();
    
public VerifyError(String detailMessage)
Constructs a new {@code VerifyError} with the current stack trace and the specified detail message.

param
detailMessage the detail message for this exception.
since
Android 1.0

        super(detailMessage);
    
Methods Summary