Re: Recommended approaches for exceptions, stacktraces, error messages

2005-05-16 Thread Sean Davis
- Original Message - From: "Siegfried Heintze" <[EMAIL PROTECTED]> To: Sent: Monday, May 16, 2005 5:16 PM Subject: Recommended approaches for exceptions, stacktraces, error messages Is anybody (perhaps book authors) promoting a "best practices" for perl CGI programmin

Recommended approaches for exceptions, stacktraces, error messages

2005-05-16 Thread Siegfried Heintze
Is anybody (perhaps book authors) promoting a "best practices" for perl CGI programming? I've been doing the use warning; use strict; use CGI; # this is from memory, but you get the idea. my $q = CGI->new; my $html = ""; eval { $html .= " $data "; $html .= " more stuff $data2 ";