MSIR.0883 Class (classname) -- inherited classes (classname) and (classname) contain members with the same name

From m204wiki
(Redirected from MSIR.0883)
Jump to navigation Jump to search

A class that extends at least two base classes, both of which were qualified with the Inherit keyword in the Extends clause, inherited the same named member from both base classes. Other than fixing the method names in the base classes, there are two ways to correct this problem:

  • Add the IgnoreDuplicates keyword after the Inherit keyword for the second base class in the Extends clause.

    This is not highly recommended, because it could mask future conflicts caused by adding a method to the first base class with the same name as the one in the second base class. In such a case, the new method in the first base class will preempt the method in the second, even though the second was formerly used. If you are lucky, a compile error will flag the problem. If unlucky, the application will silently do the wrong thing.

  • Explicitly Inherit the conflicting name using the Inherit statement in the Public block. This is the recommended approach.


Message attributes:

RETCODEO=0Sets online return code
RETCODEB=4Sets batch (single user) return code
CLASS=EError class; the message can be suppressed with the X'04' bit setting of the MSGCTL parameter
AUDITERWrites the message with line type ER to the audit trail
COUNTIncrements the error count (ERCNT) parameter
ECHODisplays the line that caused the error

Back to list of messages