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

An uncatchable die

by dws (Chancellor)
on Feb 02, 2005 at 06:08 UTC ( [id://427160]=perlmeditation: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
      eval {
        something_that_might_die();
      };
      print "Caught: $@" if $@;
    
  2. or download this
      die "exception!\n";
    
  3. or download this
      package Thing;
      sub new { bless {}, shift }
    ...
        undef $b;
      };
      print "Caught: $@\n" if $@;
    
  4. or download this
      Thing=HASH(0x811b24c) is dying
    
  5. or download this
      Thing=HASH(0x811b24c) is dying!
      Caught:         (in cleanup) Thing=HASH(0x811b24c) died
    

Log In?
Username:
Password:

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

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

    No recent polls found