| Package java.lang |
Previous |
Java API |
Index |
Next |
public class java.lang.VerifyError
extends java.lang.LinkageError
{
// Constructors
public VerifyError();
public VerifyError(String s);
}
Thrown when the "verifier" detects that a class file, though well-formed, contains some sort of internal inconsistency or security problem.
public VerifyError()Constructs an VerifyError with no detail message.
public VerifyError(String s)Constructs an VerifyError with the specified detail message.
| © 1996 Sun Microsystems, Inc. All rights reserved. |