FileDocCategorySizeDatePackage
VerifyError.javaAPI DocJava SE 5 API805Fri Aug 26 14:57:04 BST 2005java.lang

VerifyError

public class VerifyError extends LinkageError
Thrown when the "verifier" detects that a class file, though well formed, contains some sort of internal inconsistency or security problem.
author
unascribed
version
1.13, 12/19/03
since
JDK1.0

Fields Summary
Constructors Summary
public VerifyError()
Constructs an VerifyError with no detail message.

	super();
    
public VerifyError(String s)
Constructs an VerifyError with the specified detail message.

param
s the detail message.

	super(s);
    
Methods Summary