FileDocCategorySizeDatePackage
IncompatibleClassChangeError.javaAPI DocJava SE 5 API964Fri Aug 26 14:57:02 BST 2005java.lang

IncompatibleClassChangeError

public class IncompatibleClassChangeError extends LinkageError
Thrown when an incompatible class change has occurred to some class definition. The definition of some class, on which the currently executing method depends, has since changed.
author
unascribed
version
1.18, 12/19/03
since
JDK1.0

Fields Summary
Constructors Summary
public IncompatibleClassChangeError()
Constructs an IncompatibleClassChangeError with no detail message.

	super();
    
public IncompatibleClassChangeError(String s)
Constructs an IncompatibleClassChangeError with the specified detail message.

param
s the detail message.

	super(s);
    
Methods Summary