File Coverage

blib/lib/MetaPOD/Exception/Decode/Data.pm
Criterion Covered Total %
statement 11 12 91.6
branch n/a
condition n/a
subroutine 4 5 80.0
pod n/a
total 15 17 88.2


line stmt bran cond sub pod time code
1 1     1   431 use 5.006; # our
  1         2  
2 1     1   4 use strict;
  1         1  
  1         20  
3 1     1   4 use warnings;
  1         0  
  1         79  
4              
5             package MetaPOD::Exception::Decode::Data;
6              
7             our $VERSION = 'v0.4.0';
8              
9             # ABSTRACT: Failures with decoding source data
10              
11             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
12              
13 1     1   413 use Moo qw( has extends );
  1         9468  
  1         4  
14              
15              
16              
17              
18              
19              
20              
21              
22              
23              
24              
25              
26              
27             extends 'MetaPOD::Exception';
28              
29              
30              
31              
32              
33              
34              
35             has 'data' => ( is => ro =>, required => 1, );
36              
37              
38              
39              
40              
41              
42              
43             has 'internal_message' => ( is => ro =>, required => 1, );
44              
45             has '+message' => (
46             is => ro =>,
47             lazy => 1,
48             builder => sub {
49 0     0     return "While decoding:\n" . $_[0]->data . "\n Got: " . $_[0]->internal_message;
50             },
51             );
52              
53             1;
54              
55             __END__