The <methodName> Method is not Found in Basic Class

Description

The identifier of a method not implemented in the basic class is specified after the INHERITED keyword.

Troubleshooting Tips

Check the identifier of the called method. The visibility scope of the method may forbid for it to be called from child classes.

Example

Class BaseClass: Object
    
End Class BaseClass;

Class TestClass: BaseClass
    Sub Test;
    Begin
        Inherited BaseTest;
    End Sub Test;
End Class TestClass;

When the specified code is compiled, the following error is displayed: The BaseTest method is not found in basic class. To resolve the error, describe the BaseTest method in the BaseClass class.

See also:

Compiler Messages