File Coverage

blib/lib/Moose/Exception/AttributeValueIsNotAnObject.pm
Criterion Covered Total %
statement 5 5 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 7 7 100.0


line stmt bran cond sub pod time code
1             package Moose::Exception::AttributeValueIsNotAnObject;
2             our $VERSION = '2.2203';
3              
4 2     2   1374 use Moose;
  2         5  
  2         13  
5             extends 'Moose::Exception';
6             with 'Moose::Exception::Role::Instance', 'Moose::Exception::Role::Attribute';
7              
8             has 'method' => (
9             is => 'ro',
10             isa => 'Moose::Meta::Method::Delegation',
11             required => 1,
12             );
13              
14             has 'given_value' => (
15             is => 'ro',
16             isa => 'Any',
17             required => 1,
18             );
19              
20             sub _build_message {
21 2     2   6 my $self = shift;
22 2         59 "Cannot delegate ".$self->method->name." to "
23             .$self->method->delegate_to_method." because the value of "
24             . $self->attribute->name . " is not an object (got '".$self->given_value."')";
25             }
26              
27             __PACKAGE__->meta->make_immutable;
28             1;