Class java.lang.IncompatibleClassChangeError
All Packages Class Hierarchy This Package Previous Next Index
Class java.lang.IncompatibleClassChangeError
Object
|
+----Throwable
|
+----Error
|
+----LinkageError
|
+----java.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.
- Version:
- 1.11, 07/01/98
- Author:
- unascribed
- Since:
- JDK1.0
-
java.lang.IncompatibleClassChangeError()
- Constructs an
IncompatibleClassChangeError
with no
detail message.
-
java.lang.IncompatibleClassChangeError(String)
- Constructs an
IncompatibleClassChangeError
with the
specified detail message.
IncompatibleClassChangeError
public IncompatibleClassChangeError()
- Constructs an
IncompatibleClassChangeError
with no
detail message.
- Since:
- JDK1.0
IncompatibleClassChangeError
public IncompatibleClassChangeError(String s)
- Constructs an
IncompatibleClassChangeError
with the
specified detail message.
- Parameters:
- s - the detail message.
- Since:
- JDK1.0
All Packages Class Hierarchy This Package Previous Next Index