Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)

Class java.lang.IncompatibleClassChangeError

java.lang.Object
   |
   +----java.lang.Throwable
           |
           +----java.lang.Error
                   |
                   +----java.lang.LinkageError
                           |
                           +----java.lang.IncompatibleClassChangeError

public class IncompatibleClassChangeError
extends LinkageError
super class of:
AbstractMethodError, IllegalAccessError, InstantiationError, NoSuchFieldError, NoSuchMethodError

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.


Constructor Index

IncompatibleClassChangeError()
Constructs an IncompatibleClassChangeError with no detail message.
IncompatibleClassChangeError(String)
Constructs an IncompatibleClassChangeError with the specified detail message.

Constructors

IncompatibleClassChangeError
 public IncompatibleClassChangeError()
Constructs an IncompatibleClassChangeError with no detail message.

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

Parameters:
s - the detail message.

Where Am I? Class Hierarchy (JDK) All Classes (JDK) All Fields and Methods (JDK)