java.lang
public class AbstractMethodError extends IncompatibleClassChangeError
AbstractMethodError
is thrown when an application attempts
to access an abstract method. Compilers typically detect this error, but
it can be thrown at run time if the definition of a class has changed
since the application was last compiled. This can also occur when
reflecting on methods.
UNKNOWN: updated to 1.4
Constructor Summary | |
---|---|
AbstractMethodError()
Create an error without a message. | |
AbstractMethodError(String s)
Create an error with a message.
|
Parameters: s the message