public class

VerifyError

extends LinkageError
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Error
       ↳ java.lang.LinkageError
         ↳ java.lang.VerifyError

Class Overview

Thrown when the "verifier" detects that a class file, though well formed, contains some sort of internal inconsistency or security problem.

Summary

Public Constructors
VerifyError()
Constructs an VerifyError with no detail message.
VerifyError(String s)
Constructs an VerifyError with the specified detail message.
[Expand]
Inherited Methods
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public VerifyError ()

Constructs an VerifyError with no detail message.

public VerifyError (String s)

Constructs an VerifyError with the specified detail message.

Parameters
s the detail message.