T
Torben
Guest
You also have the possibility to create your own error class then inherits from AppError and in the class constructer(s) set both ReturnValue and AddMessage CONSTRUCTOR PUBLIC Error (c_ReturnValue AS CHARACTER): SUPER(c_ReturnValue). THIS-OBJECT:AddMessage(IF c_ReturnValue, 0). END CONSTRUCTOR. CONSTRUCTOR PUBLIC Error (c_Message AS CHARACTER, i_Message AS INTEGER): SUPER(c_Message, i_Message). THIS-OBJECT:ReturnValue = c_Message. END CONSTRUCTOR.
Continue reading...
Continue reading...