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...
Continue reading...