[Progress Communities] [Progress OpenEdge ABL] Support syntax: DO ON ERROR UNDO, THROW NEW MyException():

  • Thread starter Thread starter Lieven De Foor
  • Start date Start date
Status
Not open for further replies.
L

Lieven De Foor

Guest
It should be possible to write the following: DO ON ERROR UNDO, THROW NEW MyException(): /* Do something that can go wrong here */ END. Instead you have to write: DO ON ERROR UNDO, THROW: /* Do something that can go wrong here */ CATCH err AS Progress.Lang.Error: UNDO, THROW NEW MyException(). END CATCH. END.

Continue reading...
 
Status
Not open for further replies.
Back
Top