Class AbstractMethodError
java.lang.Object
java.lang.Throwable
java.lang.Error
java.lang.LinkageError
java.lang.IncompatibleClassChangeError
java.lang.AbstractMethodError
- All Implemented Interfaces:
Serializable
Thrown when an application tries to call an abstract method.Normally, this error is caught by the compiler; this error canonly occur at run time if the definition of some class hasincompatibly changed since the currently executing method was lastcompiled.
- Since:
- 1.0
- See Also:
Constructor Summary
ConstructorsConstructorDescriptionConstructs anAbstractMethodErrorwith no detail message.Constructs anAbstractMethodErrorwith the specifieddetail message.Method Summary
Constructor Details
AbstractMethodError
public AbstractMethodError()Constructs anAbstractMethodErrorwith no detail message.AbstractMethodError
Constructs anAbstractMethodErrorwith the specifieddetail message.- Parameters:
s- the detail message.