Sha256: 6f012e309a5719c027a921fce5eb5b0eb0de06277b128d5f9bdb7f212f73c5dd
Contents?: true
Size: 409 Bytes
Versions: 18
Compression:
Stored size: 409 Bytes
Contents
package Moose::Exception::DelegationToATypeWhichIsNotAClass; our $VERSION = '2.2203'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::Attribute'; sub _build_message { my $self = shift; "The ".$self->attribute->name." attribute is trying to delegate to a type (".$self->attribute->type_constraint->name.") that is not backed by a class"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
18 entries across 9 versions & 1 rubygems