package Moose::Exception::ClassDoesNotHaveInitMeta; BEGIN { $Moose::Exception::ClassDoesNotHaveInitMeta::AUTHORITY = 'cpan:STEVAN'; } $Moose::Exception::ClassDoesNotHaveInitMeta::VERSION = '2.1204'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::Class'; has 'traits' => ( is => 'ro', isa => 'ArrayRef', required => 1 ); sub _build_message { my $self = shift; my $class = $self->class_name; return "Cannot provide traits when $class does not have an init_meta() method"; } 1;