Beefy Boxes and Bandwidth Generously Provided by pair Networks
Perl-Sensitive Sunglasses
 
PerlMonks  

Re^3: Best Practices for Exception Handling (no isa)

by tye (Sage)
on Jan 29, 2003 at 17:03 UTC ( [id://231014]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        open( FILE, "<read.me" )
            or  die "Can't read read.me: $!\n";
    
  2. or download this
        if(  ! open( FILE, "<read.me" )  ) {
            # Deal with the absense of this file
        }
    
  3. or download this
        open( FILE, "<read.me" );
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others pondering the Monastery: (None)
    As of 2024-04-25 00:47 GMT
    Sections?
    Information?
    Find Nodes?
    Leftovers?
      Voting Booth?

      No recent polls found