Sha256: 38b0c903f95c8a2e93ae2df5991e9c63b379f5e2ddee5f42bd2df534ae9b9780
Contents?: true
Size: 560 Bytes
Versions: 33
Compression:
Stored size: 560 Bytes
Contents
package Moose::Exception::AttributeValueIsNotDefined; our $VERSION = '2.2207'; use Moose; extends 'Moose::Exception'; with 'Moose::Exception::Role::Instance', 'Moose::Exception::Role::Attribute'; has 'method' => ( is => 'ro', isa => 'Moose::Meta::Method::Delegation', required => 1, ); sub _build_message { my $self = shift; "Cannot delegate ".$self->method->name." to " .$self->method->delegate_to_method." because the value of " . $self->attribute->name . " is not defined"; } __PACKAGE__->meta->make_immutable; 1;
Version data entries
33 entries across 21 versions & 1 rubygems