I have some code that looks something like this:
I want to fully process the exception in the (bold) line - I don't want the exception to bubble-up to the outer catch block. How can I stop the exception from bubbling-up once I've dealt with it myself?
Thanks!
Code:
Try
code block 1
Try
code-block 2
(exception thrown here)
Catch
[b]process exception to my heart's content[/b]
End Try
code block 1 - continued
Catch
End Try
I want to fully process the exception in the (bold) line - I don't want the exception to bubble-up to the outer catch block. How can I stop the exception from bubbling-up once I've dealt with it myself?
Thanks!