File Coverage

blib/lib/Moose/Exception/CouldNotCreateMethod.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::CouldNotCreateMethod;
2             our $VERSION = '2.2203';
3              
4 2     2   1077 use Moose;
  2         5  
  2         12  
5             extends 'Moose::Exception';
6             with 'Moose::Exception::Role::Attribute';
7              
8             has 'option_name' => (
9             is => 'ro',
10             isa => 'Str',
11             required => 1
12             );
13              
14             has 'option_value' => (
15             is => 'ro',
16             isa => 'Any',
17             required => 1
18             );
19              
20             has 'error' => (
21             is => 'ro',
22             isa => 'Str',
23             required => 1
24             );
25              
26             sub _build_message {
27 3     3   6 my $self = shift;
28 3         80 "Could not create the '".$self->option_name."' method for " . $self->attribute->name . " because : ".$self->error;
29             }
30              
31             __PACKAGE__->meta->make_immutable;
32             1;