public class AbstractMethodError extends IncompatibleClassChangeError
Note that this can only occur when inconsistent class files have been loaded, since invoking an abstract method is a compile time error.
| Constructor and Description |
|---|
AbstractMethodError()
Constructs a new
AbstractMethodError that includes the current
stack trace. |
AbstractMethodError(String detailMessage)
Constructs a new
AbstractMethodError with the current stack trace
and the specified detail message. |
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toStringpublic AbstractMethodError()
AbstractMethodError that includes the current
stack trace.public AbstractMethodError(String detailMessage)
AbstractMethodError with the current stack trace
and the specified detail message.detailMessage - the detail message for this error.