Beefy Boxes and Bandwidth Generously Provided by pair Networks
Just another Perl shrine
 
PerlMonks  

Re: eval error stack (noise)

by tye (Sage)
on Nov 11, 2015 at 22:06 UTC ( [id://1147515]=note: print w/replies, xml ) Need Help??

Help for this page

Select Code to Download


  1. or download this
        my $bar = baz();
        if ($@) {
            die "baz failed!\n";
        }
    
  2. or download this
        my $bar = baz();
        if ($@) {
            die "baz failed: $@\n";
        }   #              ^^^^
    
  3. or download this
    #!/usr/bin/perl
    use strict;
    ...
    sub settle {
        # ...
    }
    
  4. or download this
    Deal failed: Can't make a deal: No collateral
    
  5. or download this
    Use of uninitialized value in unlink at - line 7.
        (in cleanup) Failed to free resources: No such file or directory
    Deal failed: Can't make a deal: No collateral
    

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others having an uproarious good time at the Monastery: (4)
As of 2024-04-19 22:30 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found