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