Exception in a Exception

A the end of any Method we can start an Exception block of code.
Flow goes there if there is any exception not handled in the method code.
But I don’t know what happens if there is another not handled exception in the Exception code.
Does the method finish? Does the application crash?

It seems pretty easy to know. Have you tried to raise an exception there ?

Wow, still learning new stuff. Yes, if your exception handling exceptions you can have an exception block for that. And it’s in the docs…

Thanks.

[quote=284003:@Michel Bujardet]It seems pretty easy to know. Have you tried to raise an exception there ?[/quote]Michel, yes I could try, but I wanted to hear a more documented opinion.:slight_smile:
Following your advice I’ve checked this:

[code]Raise New RuntimeException

Exception
MsgBox “1”
Raise New RuntimeException
Return
Exception
MsgBox “2”[/code]
And yes, I receive both messages