Perl Diver 2.33
Main Environment Variables Perl Default Values Perl Config - Summary Perl Config - Full Installed Modules List Directory uptime Docs

Module Documentation
Details and documentation about a specific module, including version and documentation (if available). Note that while links to perldoc.com and search.cpan.org are provided, the module may be part of a larger distribution. If you reach a File Not Found page on either site, please try the parent module.

Class::WhiteHole

Name Class::WhiteHole
Version 0.04
Located at /usr/share/perl5
File /usr/share/perl5/Class/WhiteHole.pm
Is Core No
Search CPAN for this module Class::WhiteHole
Documentation Class::WhiteHole
Module Details Class::WhiteHole


NAME

Class::WhiteHole - base class to treat unhandled method calls as errors


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);


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.


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.


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.


AUTHOR

Michael G Schwern <schwern@pobox.com>


SEE ALSO

the Class::BlackHole manpage

Perl Diver brought to you by ScriptSolutions.com © 1997- 2026