in reply to Can we continue after an exception?

In a word: No. throw/catch is a way of dealing with unrecoverable (in the local context) errors. If it is a recoverable error in the local context don't throw - handle the error (perhaps by calling an error handling routine) and carry on.


DWIM is Perl's answer to Gödel