mirror of
https://git.FreeBSD.org/ports.git
synced 2024-12-13 03:03:15 +00:00
81797980f7
URLs automatically rewritten from /search?dist=Foo or /dist/Foo to /dist/Foo/ (note trailing slash). After a 2002(!) reorganization, this is the preferred way to refer to modules on search.cpan.org. This pass brought to you by http://people.freebsd.org/~fenner/fix-search
14 lines
485 B
Plaintext
14 lines
485 B
Plaintext
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.
|
|
|
|
WWW: http://search.cpan.org/dist/Class-WhiteHole/
|
|
|
|
-- Sergey Skvortsov
|
|
skv@FreeBSD.org
|