Beefy Boxes and Bandwidth Generously Provided by pair Networks
No such thing as a small change
 
PerlMonks  

Trapping Error Object

by Anonymous Monk
on Feb 04, 2002 at 20:13 UTC ( [id://143290]=perlquestion: print w/replies, xml ) Need Help??

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Hello:

I have written some code that sends MS Alerts. It works well, but I cannot figure out how to trap errors. I want to be able to trap errors in a manner similar to the asp error object or at least retrieve the same info.

TAC

Replies are listed 'Best First'.
Re: Trapping Error Object
by gellyfish (Monsignor) on Feb 04, 2002 at 22:07 UTC

    I think that what you want is eval BLOCK but all this is a little vague.

    You would do something like:

    eval { # do something that might raise a fatal error }; if ( $@ ) { # do something to report the error # $@ contains the error message or error object }

    However it might be useful if you gave us a bit more of a clue as to what it was you were trying to do.

    /J\

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-19 22:12 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found