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


in reply to CGI Error Handling

The simplest way to handle errors is eval block. It acts like java try{}catch{} statement. For example:
eval{ ...code...}; if ($@) { handle error }
For complex error handling Error.pm module exists. It's very useful for scripts with an object-oriented structure. Example:
use Error; try{ do something... }catch Error::Simple with{ handling... }finally{ ... }
Looks like Java code :-)

Replies are listed 'Best First'.
Re: Re: CGI Error Handling
by davorg (Chancellor) on Dec 10, 2001 at 17:37 UTC
    Looks like Java code

    You say that like it's a good thing :)

    --
    <http://www.dave.org.uk>

    "The first rule of Perl club is you do not talk about Perl club."
    -- Chip Salzenberg