1 /* 2 * @(#)LinkageError.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 * Subclasses of <code>LinkageError</code> indicate that a class has 12 * some dependency on another class; however, the latter class has 13 * incompatibly changed after the compilation of the former class. 14 * 15 * 16 * @author Frank Yellin 17 * @version 1.13, 12/19/03 18 * @since JDK1.0 19 */ 20 public 21 class LinkageError extends Error { 22 /** 23 * Constructs a <code>LinkageError</code> with no detail message. 24 */ 25 public LinkageError() { 26 super(); 27 } 28 29 /** 30 * Constructs a <code>LinkageError</code> with the specified detail 31 * message. 32 * 33 * @param s the detail message. 34 */ 35 public LinkageError(String s) { 36 super(s); 37 } 38 } 39