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

Best Practices for Exception Handling

by Ovid (Cardinal)
on Jan 28, 2003 at 23:04 UTC ( [id://230799]=perlquestion: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
    my $data = $self->__validate_added_data;
    if ( UNIVERSAL::isa( $data, 'Foo::Form' ) ) {
    ...
    else {
        # process the error
    }
    
  2. or download this
    try {
        my $data = $self->__validate_added_data;
    ...
    catch FormValidationError with {
        # process the error
    };
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others examining the Monastery: (8)
As of 2024-04-18 16:33 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found