Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl Monk, Perl Meditation
 
PerlMonks  

Plz help me to create a perl script to catch errors and exceptions

by technology1980 (Initiate)
on Aug 22, 2007 at 14:47 UTC ( [id://634367]=perlquestion: print w/replies, xml ) Need Help??

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

This node falls below the community's threshold of quality. You may see it by logging in.
  • Comment on Plz help me to create a perl script to catch errors and exceptions

Replies are listed 'Best First'.
Re: Plz help me to create a perl script to catch errors and exceptions
by Joost (Canon) on Aug 22, 2007 at 15:05 UTC
Re: Plz help me to create a perl script to catch errors and exceptions
by rvosa (Curate) on Aug 22, 2007 at 15:16 UTC
    What do you mean by "catch errors and exceptions"? That sort of phrase is typically interpreted to mean something like:
    eval { &something_that_throws_exceptions }; if ( $@ ) { &exception_handler }
    or even:
    use Exception::Class::TCF; try { &something_that_throws_exceptions } catch 'Default' => \&exception_handler;
    However, because you're also talking about log files, it sounds like you mean something else. Like how to parse a file? Regular expressions? Writing to files? It's impossible to tell. Maybe you have an example of some lines in the log, and some code you've written so far to show your intentions.
    A reply falls below the community's threshold of quality. You may see it by logging in.

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others exploiting the Monastery: (4)
As of 2024-04-19 23:10 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found