Class AbstractMethodError

java.lang.Object
java.lang.Throwable
java.lang.Error
All Implemented Interfaces:
Serializable

public classAbstractMethodErrorextendsIncompatibleClassChangeError
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 Details

    • AbstractMethodError

      public AbstractMethodError()
      Constructs anAbstractMethodError with no detail message.
    • AbstractMethodError

      public AbstractMethodError(String s)
      Constructs anAbstractMethodError with the specifieddetail message.
      Parameters:
      s - the detail message.