in reply to Re^2: Can we continue after an exception?
in thread Can we continue after an exception?

I played around with the various exception modules, and eventually settled on what Perl already provides:
eval { step1(); step2(); }; if (my $error = $@) { # rethrow error if we can't handle it die $error unless ref $error && $error->isa('My:Error'); handle_error($error); }

clint