COBCH1841 class-name does not implement get accessor for indexer indexer-signature of abstract class abstract-class-name

The non-abstract class specified is declared as inheriting an abstract class including an abstract indexer with a getter, and that getter is not overridden by the class.

Resolution:

Correct the code; then recompile.

Example:

The following example shows code that would throw this error.

       class-id a abstract.
       indexer-id string (i as binary-long) abstract.
       getter.
       setter.
       end indexer.
       end class.

       class-id b inherits type a.
       indexer-id string (i as binary-long) override.
       setter.
       end indexer.
       end class.