java.lang
Class IncompatibleClassChangeError
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Error
-
- java.lang.IncompatibleClassChangeError
-
- Direct Known Subclasses:
- AbstractMethodError, IllegalAccessError
public class IncompatibleClassChangeError extends Error
IncompatibleClassChangeError
is the superclass of all classes which represent errors that occur when inconsistent class files are loaded into the same running image.- See Also:
Error
-
-
Constructor Summary
Constructors Constructor and Description IncompatibleClassChangeError()
Constructs a newIncompatibleClassChangeError
that includes the current stack trace.IncompatibleClassChangeError(String detailMessage)
Constructs a newIncompatibleClassChangeError
with the current stack trace and the specified detail message.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
fillInStackTrace, getMessage, getStackTrace, printStackTrace, printStackTrace, toString
-
-
-
-
Constructor Detail
-
IncompatibleClassChangeError
public IncompatibleClassChangeError()
Constructs a newIncompatibleClassChangeError
that includes the current stack trace.
-
IncompatibleClassChangeError
public IncompatibleClassChangeError(String detailMessage)
Constructs a newIncompatibleClassChangeError
with the current stack trace and the specified detail message.- Parameters:
detailMessage
- the detail message for this error.
-
-