Beefy Boxes and Bandwidth Generously Provided by pair Networks
more useful options
 
PerlMonks  

Re: error handling

by Zaxo (Archbishop)
on Jun 28, 2003 at 02:57 UTC ( [id://269795]=note: print w/replies, xml ) Need Help??


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.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://269795]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others avoiding work at the Monastery: (4)
As of 2024-04-25 16:21 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found