in reply to problem using Class::Factory
Just checking the most obvious cause - are you sure that you have the Class::Factory module installed? Since base doesn't die if the module cannot be located, does changing
use base qw(Class::Factory);
to
use Class::Factory; our @ISA = qw(Class::Factory);
give you an error?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: strange error when subclassing packages
by shoez (Sexton) on Apr 20, 2003 at 22:25 UTC | |
by pfaut (Priest) on Apr 21, 2003 at 00:40 UTC | |
by adrianh (Chancellor) on Apr 21, 2003 at 09:33 UTC | |
by Aristotle (Chancellor) on Apr 21, 2003 at 02:50 UTC | |
by pfaut (Priest) on Apr 21, 2003 at 12:50 UTC | |
by adrianh (Chancellor) on Apr 21, 2003 at 00:14 UTC |