File Coverage

blib/lib/MetaPOD/Exception.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1 2     2   721 use 5.006; # our
  2         5  
2 2     2   7 use strict;
  2         2  
  2         33  
3 2     2   7 use warnings;
  2         3  
  2         103  
4              
5             package MetaPOD::Exception;
6              
7             our $VERSION = 'v0.4.0';
8              
9 2     2   473 use Moo qw( extends );
  2         9604  
  2         10  
10              
11             # ABSTRACT: Base class for MetaPOD exceptions.
12              
13             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
14              
15              
16              
17              
18              
19              
20              
21              
22              
23              
24              
25              
26              
27             extends 'Throwable::Error';
28              
29 2     2   1244 no Moo;
  2         2  
  2         6  
30              
31             1;
32              
33             __END__