Sha256: 6becb6b5cba456da2140cda19869dd884b035b1f83ccf19c761d2204ca4347b1
Contents?: true
Size: 465 Bytes
Versions: 14
Compression:
Stored size: 465 Bytes
Contents
package Moose::Exception::UnableToCanonicalizeNonRolePackage; our $VERSION = '2.2206'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::Attribute'; has 'handles' => ( is => 'ro', isa => 'Str', required => 1, ); sub _build_message { my $self = shift; "Unable to canonicalize the 'handles' option with ".$self->handles." because its metaclass is not a Moose::Meta::Role"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
14 entries across 7 versions & 1 rubygems