package Moose::Exception::DelegationToATypeWhichIsNotAClass; BEGIN { $Moose::Exception::DelegationToATypeWhichIsNotAClass::AUTHORITY = 'cpan:STEVAN'; } $Moose::Exception::DelegationToATypeWhichIsNotAClass::VERSION = '2.1204'; 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"; } 1;