Sha256: 1611127b5d452b8951f591dff9dd47d52d0226da55eee66f50a63ad53b738609
Contents?: true
Size: 468 Bytes
Versions: 14
Compression:
Stored size: 468 Bytes
Contents
package Moose::Exception::DelegationToARoleWhichIsNotLoaded; our $VERSION = '2.2206'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::Attribute'; has 'role_name' => ( is => 'ro', isa => 'Str', required => 1, ); sub _build_message { my $self = shift; "The ".$self->attribute->name." attribute is trying to delegate to a role which has not been loaded - ".$self->role_name; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
14 entries across 7 versions & 1 rubygems