You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
56 lines
901 B
56 lines
901 B
/*
|
|
* Copyright (c) 1995, 2008, Oracle and/or its affiliates. All rights reserved.
|
|
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*
|
|
*/
|
|
|
|
package java.lang;
|
|
|
|
/**
|
|
* Thrown when the "verifier" detects that a class file,
|
|
* though well formed, contains some sort of internal inconsistency
|
|
* or security problem.
|
|
*
|
|
* @author unascribed
|
|
* @since JDK1.0
|
|
*/
|
|
public
|
|
class VerifyError extends LinkageError {
|
|
private static final long serialVersionUID = 7001962396098498785L;
|
|
|
|
/**
|
|
* Constructs an <code>VerifyError</code> with no detail message.
|
|
*/
|
|
public VerifyError() {
|
|
super();
|
|
}
|
|
|
|
/**
|
|
* Constructs an <code>VerifyError</code> with the specified detail message.
|
|
*
|
|
* @param s the detail message.
|
|
*/
|
|
public VerifyError(String s) {
|
|
super(s);
|
|
}
|
|
}
|