|
|
| P is for Practical | |
| PerlMonks |
Deprecated use of $SIG{__DIE__} is usefulby clinton (Priest) |
| on Feb 28, 2009 at 17:32 UTC ( #747179=perlquestion: print w/ replies, xml ) | Need Help?? |
|
clinton has asked for the
wisdom of the Perl Monks concerning the following question:
According to the perlvar docs for $SIG{__DIE__}: Due to an implementation glitch, the $SIG{__DIE__} hook is called even inside an eval(). Do not use this to rewrite a pending exception in $@ , or as a bizarre substitute for overriding CORE::GLOBAL::die() . This strange action at a distance may be fixed in a future release so that $SIG{__DIE__} is only called if your program is about to exit, as was the original intent. Any other use is deprecated. However, I find this particular behaviour useful. For instance, in my mod_perl application, pretty much all the code is wrapped in an eval which lets me return a nice error page to the user. Because of this glitch, I am able to inflate an uncaught exception into an error object, with attached stacktrace:
Once this 'glitch' is fixed, the above code will no longer work (as in it will no longer give me a stack trace from the place where the error occurred) . Is there a better (not-about-to-be-deprecated) way to do this? thanks Clint UPDATE: Added some comments to the code
Back to
Seekers of Perl Wisdom
|
|
||||||||||||||||||||||||||||||||||||||