Sha256: 78c26ca4a60a9e269fd146a983ca1205df2146318a87068af5262f0f56a0ec53
Contents?: true
Size: 465 Bytes
Versions: 33
Compression:
Stored size: 465 Bytes
Contents
package Moose::Exception::UnableToCanonicalizeNonRolePackage; our $VERSION = '2.2207'; 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
33 entries across 21 versions & 1 rubygems