in reply to Re: Moose - MOP.pm funny
in thread Moose - MOP.pm funny

package Avbrief::EAD::Processor; use Moose; use Avbrief::TypeConstraints; our $VERSION = 3.00; has file => (isa=>'ReadableFile', is=>'ro', required=>1); has logger => (isa=>'Logger', is=>'ro', required=>1, handles=>[qw/log +error debug/]); has schema => (isa=>'Avbrief::DataLayer::DBIC', is=>'ro'); sub process { die "overide me!" }; 1;
Let me know if you need anything else - I'm not a perl developer!

Replies are listed 'Best First'.
Re^3: Moose - MOP.pm funny
by ikegami (Patriarch) on Mar 09, 2011 at 17:35 UTC
    Line 3 is use Avbrief::TypeConstraints;, so the error is in Avbrief::TypeConstraints. Unfortunately, we don't have a line number for the actual error.