Sha256: c6ae0aba39af3a2a54e937e42d14aa64fb13a581ce83d6a98414c358ccd8e951
Contents?: true
Size: 409 Bytes
Versions: 14
Compression:
Stored size: 409 Bytes
Contents
package Moose::Exception::DelegationToATypeWhichIsNotAClass; our $VERSION = '2.2206'; 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
14 entries across 7 versions & 1 rubygems