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