Package java.lang |
![]() Previous |
![]() Java API |
![]() Index |
![]() Next |
public class java.lang.IncompatibleClassChangeError extends java.lang.LinkageError { // Constructors public IncompatibleClassChangeError(); public IncompatibleClassChangeError(String s); }
An instance of a subclass of IncompatibleClassChangeError is thrown to indicate that an incompatible class change has occurred to some class definition. The definition of some class, upon which the currently executing method depends, has since changed.
public IncompatibleClassChangeError()Constructs an IncompatibleClassChangeError with no detail message.
public IncompatibleClassChangeError(String s)Constructs an IncompatibleClassChangeError with the specified detail message.
Parameter Description s the detail message
© 1996 Sun Microsystems, Inc. All rights reserved.