Class java.lang.VerifyError
All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class java.lang.VerifyError

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

Version:
1.6, 07/01/98
Author:
unascribed
Since:
JDK1.0

Constructor Index

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

Constructors

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

Since:
JDK1.0
 o VerifyError
public VerifyError(String s)
Constructs an VerifyError with the specified detail message.

Parameters:
s - the detail message.
Since:
JDK1.0

All Packages  Class Hierarchy  This Package  Previous  Next  Index