Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

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.


Constructor Index

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

Constructors

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

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

Parameters:
s - the detail message.

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)