http://qs1969.pair.com?node_id=269795


in reply to error handling

You're describing a typical try ... catch situation. Have the error die with the message, call with eval {}, and check $@ after eval returns.

After Compline,
Zaxo

Replies are listed 'Best First'.
Re: Re: error handling
by archon (Monk) on Jun 28, 2003 at 03:11 UTC

    i must have been overanalyzing the problem from the start. i don't know why i didn't think of that.

    i did attempt the try...catch thing with Error.pm but it stopped me from doing a return within the block.

    thanks!
      This is the mechanism used by Error.pm under the hood, more or less. While Error.pm is a much prettier interface than checking $@ yourself, it has some drawbacks. Since the arguments to both try and catch are anonymous subs, return will return from those and not from the enclosing sub, as you've experienced. You'll have to set up a variable with the value you want to return and then do so outside of try/catch.