I wrote:
> I'm looking into ways to do resumptive exception handling in Perl.  For
> example, I have something equivalent to:
>        eval {
>           # Code where an error may occur
>           die "Here's an exception";
>           # Code where I want to resume after handling the exception
>           print "Continuing....\n";
>        };
>        if ($@) {
>           # Handle the exception
>           # Resume at the line following the exception
>        }
> 
> Is there a way of resuming after the die statement?  If not, is there
> a standard way of resuming after exception handling in Perl?  I have
> code that allows redoing the entire eval block or simply continuing
> after the eval block, but I have not found any way to resume inside
> the eval block.

Maybe I wasn't clear so people took the "die" command too literally.
There might not be a "die" command in the code at all.  It might be
a subroutine that calls "die", or some statement that causes a runtime
exception, or any other means of raising a normally-fatal exception:
         eval {
            # Code where an error may occur
            exception_causing_method();
            # Code where I want to resume after handling the exception
            print "Continuing....\n";
         };

I want to handle the exception and then resume execution at the following
line, regardless of how the exception is caused.  Can anyone recommend a
technique to do this type of resumptive exception handling in perl?  I
suspect it involves something more complicated than an eval {BLOCK} form.

Thanks.
+ Richard J. Barbalace
  Cambridge, MA

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to