From 55490b1bfb539386b63e25a8fd90e56c0200c1e8 Mon Sep 17 00:00:00 2001 From: Tobi Oetiker Date: Tue, 23 Aug 2011 13:59:15 +0000 Subject: clean out smoketrace --- qooxdoo/source/perl/CGI/Session/ErrorHandler.pm | 73 ------------------------- 1 file changed, 73 deletions(-) delete mode 100644 qooxdoo/source/perl/CGI/Session/ErrorHandler.pm (limited to 'qooxdoo/source/perl/CGI/Session/ErrorHandler.pm') diff --git a/qooxdoo/source/perl/CGI/Session/ErrorHandler.pm b/qooxdoo/source/perl/CGI/Session/ErrorHandler.pm deleted file mode 100644 index 8f42482..0000000 --- a/qooxdoo/source/perl/CGI/Session/ErrorHandler.pm +++ /dev/null @@ -1,73 +0,0 @@ -package CGI::Session::ErrorHandler; - -# $Id: ErrorHandler.pm 351 2006-11-24 14:16:50Z markstos $ - -use strict; -$CGI::Session::ErrorHandler::VERSION = "4.20"; - -=pod - -=head1 NAME - -CGI::Session::ErrorHandler - error handling routines for CGI::Session - -=head1 SYNOPSIS - - require CGI::Session::ErrorHandler - @ISA = qw( CGI::Session::ErrorHandler ); - - sub some_method { - my $self = shift; - unless ( $some_condition ) { - return $self->set_error("some_method(): \$some_condition isn't met"); - } - } - -=head1 DESCRIPTION - -CGI::Session::ErrorHandler provides set_error() and errstr() methods for setting and accessing error messages from within CGI::Session's components. This method should be used by driver developers for providing CGI::Session-standard error handling routines for their code - -=head2 METHODS - -=over 4 - -=item set_error($message) - -Implicitly defines $pkg_name::errstr and sets its value to $message. Return value is B undef. - -=cut - -sub set_error { - my $class = shift; - my $message = shift; - $class = ref($class) || $class; - no strict 'refs'; - ${ "$class\::errstr" } = sprintf($message || "", @_); - return; -} - -=item errstr() - -Returns whatever value was set by the most recent call to set_error(). If no message as has been set yet, the empty string is returned so the message can still concatenate without a warning. - -=back - -=cut - -*error = \&errstr; -sub errstr { - my $class = shift; - $class = ref( $class ) || $class; - - no strict 'refs'; - return ${ "$class\::errstr" } || ''; -} - -=head1 LICENSING - -For support and licensing information see L. - -=cut - -1; - -- cgit v1.2.3-24-g4f1b