1 /* 2 * @(#)VerifyError.java 1.13 03/12/19 3 * 4 * Copyright 2004 Sun Microsystems, Inc. All rights reserved. 5 * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. 6 */ 7 8 package java.lang; 9 10 /** 11 * Thrown when the "verifier" detects that a class file, 12 * though well formed, contains some sort of internal inconsistency 13 * or security problem. 14 * 15 * @author unascribed 16 * @version 1.13, 12/19/03 17 * @since JDK1.0 18 */ 19 public 20 class VerifyError extends LinkageError { 21 /** 22 * Constructs an <code>VerifyError</code> with no detail message. 23 */ 24 public VerifyError() { 25 super(); 26 } 27 28 /** 29 * Constructs an <code>VerifyError</code> with the specified detail message. 30 * 31 * @param s the detail message. 32 */ 33 public VerifyError(String s) { 34 super(s); 35 } 36 } 37