Subject: | AxKit Exception error |
In Handel Exception, you test to see if we have AxKit and attempt to
alter @ISA if we do.
It doesn't work, and I think the reason is to do with the way your
trying to alter @ISA... I got it to work by changing it to this:
*** Exception.pm Mon Jun 5 14:01:54 2006
--- Exception-NEW.pm Mon Jun 5 14:01:44 2006
***************
*** 8,14 ****
use Handel::L10N qw(translate);
eval 'require Apache::AxKit::Exception';
if (!$@) {
! push @__PACKAGE__::ISA, 'Apache::AxKit::Exception';
};
};
--- 8,15 ----
use Handel::L10N qw(translate);
eval 'require Apache::AxKit::Exception';
if (!$@) {
! no strict;
! push @ISA, 'Apache::AxKit::Exception';
};
};