[Progress Communities] [Progress OpenEdge ABL] Forum Post: RE: Changing PASOE agent logging dynamically

  • Thread starter Thread starter Torben
  • Start date Start date
Status
Not open for further replies.
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...
 
Status
Not open for further replies.
Back
Top