All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Class java.lang.VerifyError

java.lang.Object
    |
    +----java.lang.Throwable
            |
            +----java.lang.Error
                    |
                    +----java.lang.LinkageError
                            |
                            +----java.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.

Since:
JDK1.0

Constructor Index

 o VerifyError()
Constructs an VerifyError with no detail message.
 o VerifyError(String)
Constructs an VerifyError with the specified detail message.

Constructors

 o VerifyError
public VerifyError()
Constructs an VerifyError with no detail message.

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

Parameters:
s - the detail message.

All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Submit a bug or feature