A new payment format has been created and it worked well but my dev box has been upgraded to the 10.0.25 version, functionality is broken because public access modifier was used for the overridden method which was implemented as internal in the base class.
I also read the article posted by Code Crib which mentioned that for all other code, the only potential issue happens when your code is using INHERITANCE on a Microsoft class and the code is trying to override an internal method and/or changing its access modifier.
getClassName() method used with the public access modifier worked before 10.0.25 but it errored out after the version upgrade.
but this method has been implemented with internal access modifier.
Here is the error.
'VendOutPaym_XXXX.getClassName' cannot change access modifiers when overriding inherited method 'VendOutPaym.getClassName'
Please suggest what has to be done to resolve this issue. Thanks in Advance.
Regards,
Raziq