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

Re^2: What magic is this?

by gellyfish (Monsignor)
on Oct 26, 2006 at 15:03 UTC ( [id://580782]=note: print w/replies, xml ) Need Help??


in reply to Re: What magic is this?
in thread What magic is this?

Yes, it is usually caught by the eval { } block which the author of XML::Parser deliberately put there, because the error was expected under certain circumstances and should be ignored. It is part of the design of the module.

You don't need to set the $^S you just want to check whether it is set in your die handler:

$SIG{__DIE__} = sub { if (! $^S ) { # Report the error } else { # Ignore the error as it came # came from inside an eval } };

/J\

Replies are listed 'Best First'.
Re^3: What magic is this?
by Jonathan (Curate) on Oct 26, 2006 at 15:09 UTC
    Ahh yes of course, that's it.

    Thanks a lot for your help

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others browsing the Monastery: (2)
As of 2024-03-19 06:05 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found