Beefy Boxes and Bandwidth Generously Provided by pair Networks
Clear questions and runnable code
get the best and fastest answer
 
PerlMonks  

Re^3: the try/catch example from "Programming Perl" analyzed

by hardburn (Abbot)
on Aug 18, 2004 at 18:11 UTC ( [id://384062]=note: print w/replies, xml ) Need Help??


in reply to Re^2: the try/catch example from "Programming Perl" analyzed
in thread the try/catch example from "Programming Perl" analyzed

Well, that helps a bit with the implementation, but doesn't solve the fundamental problem of having to handle the non-blessed case. Also, you now have to pull in another module to check for blessedness.

"There is no shame in being self-taught, only in not trying to learn in the first place." -- Atrus, Myst: The Book of D'ni.

  • Comment on Re^3: the try/catch example from "Programming Perl" analyzed

Replies are listed 'Best First'.
Re^4: the try/catch example from "Programming Perl" analyzed
by rsteinke (Scribe) on Aug 19, 2004 at 06:15 UTC

    You could always use some sort of object wrapper to convert the strings into error objects, and hide that in the 'try' code,

    local $_ = (blessed $@) ? $@ : MyStringErrorClass->new($@);
    or some such. That class (or a function that returns different error objects depending on the error string, or something), would know all about the Errno module, and other standard kinds of errors.

    Ron Steinke
    <rsteinke@w-link.net>

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (2)
As of 2024-04-20 04:55 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found