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

Re: Catching DIE no matter what

by broquaint (Abbot)
on Aug 05, 2005 at 16:43 UTC ( [id://481298]=note: print w/replies, xml ) Need Help??


in reply to Catching DIE no matter what

In the case of XML::Parser it has its own __DIE__ handler which makes things a little tricky. But this is perl, the language where "never" doesn't really mean "never", it just means "probably shouldn't" ...
BEGIN { ## Use CORE::die if you still want exceptions *CORE::GLOBAL::die = sub { warn "Problem? What problem? ... [@_]\n"; }; } use XML::Parser; XML::Parser->new->parse("This isn't XML. Seriously"); print "All is well\n"; __output__ Problem? What problem? [ syntax error at line 1, column 0, byte 0 at /usr/lib/perl5/XML/Parser. +pm line 187 ] All is well
HTH

_________
broquaint

Log In?
Username:
Password:

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

How do I use this?Last hourOther CB clients
Other Users?
Others goofing around in the Monastery: (3)
As of 2024-04-26 06:56 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found