jaroslav@1675: /* jaroslav@1675: * Copyright (c) 1994, 2008, Oracle and/or its affiliates. All rights reserved. jaroslav@1675: * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. jaroslav@1675: * jaroslav@1675: * This code is free software; you can redistribute it and/or modify it jaroslav@1675: * under the terms of the GNU General Public License version 2 only, as jaroslav@1675: * published by the Free Software Foundation. Oracle designates this jaroslav@1675: * particular file as subject to the "Classpath" exception as provided jaroslav@1675: * by Oracle in the LICENSE file that accompanied this code. jaroslav@1675: * jaroslav@1675: * This code is distributed in the hope that it will be useful, but WITHOUT jaroslav@1675: * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or jaroslav@1675: * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License jaroslav@1675: * version 2 for more details (a copy is included in the LICENSE file that jaroslav@1675: * accompanied this code). jaroslav@1675: * jaroslav@1675: * You should have received a copy of the GNU General Public License version jaroslav@1675: * 2 along with this work; if not, write to the Free Software Foundation, jaroslav@1675: * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. jaroslav@1675: * jaroslav@1675: * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA jaroslav@1675: * or visit www.oracle.com if you need additional information or have any jaroslav@1675: * questions. jaroslav@1675: */ jaroslav@1675: jaroslav@1675: package java.lang; jaroslav@1675: jaroslav@1675: /** jaroslav@1675: * Thrown when an incompatible class change has occurred to some class jaroslav@1675: * definition. The definition of some class, on which the currently jaroslav@1675: * executing method depends, has since changed. jaroslav@1675: * jaroslav@1675: * @author unascribed jaroslav@1675: * @since JDK1.0 jaroslav@1675: */ jaroslav@1675: public jaroslav@1675: class IncompatibleClassChangeError extends LinkageError { jaroslav@1675: private static final long serialVersionUID = -4914975503642802119L; jaroslav@1675: jaroslav@1675: /** jaroslav@1675: * Constructs an IncompatibleClassChangeError with no jaroslav@1675: * detail message. jaroslav@1675: */ jaroslav@1675: public IncompatibleClassChangeError () { jaroslav@1675: super(); jaroslav@1675: } jaroslav@1675: jaroslav@1675: /** jaroslav@1675: * Constructs an IncompatibleClassChangeError with the jaroslav@1675: * specified detail message. jaroslav@1675: * jaroslav@1675: * @param s the detail message. jaroslav@1675: */ jaroslav@1675: public IncompatibleClassChangeError(String s) { jaroslav@1675: super(s); jaroslav@1675: } jaroslav@1675: }