1 /* 2 * @(#)IncompatibleClassChangeError.java 1.18 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 an incompatible class change has occurred to some class 12 * definition. The definition of some class, on which the currently 13 * executing method depends, has since changed. 14 * 15 * @author unascribed 16 * @version 1.18, 12/19/03 17 * @since JDK1.0 18 */ 19 public 20 class IncompatibleClassChangeError extends LinkageError { 21 /** 22 * Constructs an <code>IncompatibleClassChangeError</code> with no 23 * detail message. 24 */ 25 public IncompatibleClassChangeError () { 26 super(); 27 } 28 29 /** 30 * Constructs an <code>IncompatibleClassChangeError</code> with the 31 * specified detail message. 32 * 33 * @param s the detail message. 34 */ 35 public IncompatibleClassChangeError(String s) { 36 super(s); 37 } 38 } 39