Exception codes

It doesn’t seem possible to get any information about the exception that triggers a catch block. In particular, you can’t distinguish between self-raised (anticipated) exceptions, and unanticipated exceptions. Is this right?The only workaround I have is setting a variable before I raise the exception and testing for that…Steve

Yes, that’s right - and the workaround you’re using is the right way to handle the situation too.

Hi guys,

Is this still the case? Can one obtain information about the exception natively instead of setting a variable? If not, I'd like to add a vote for the "wish list".

Thanks!

yes - still the case. I’ll add it to the todo list to enhance the exception handling.