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