http://qs321.pair.com?node_id=634367

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.