File Coverage

blib/lib/MetaPOD/Exception.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1 2     2   1839 use 5.008; # utf8
  2         8  
  2         75  
2 2     2   12 use strict;
  2         4  
  2         60  
3 2     2   9 use warnings;
  2         3  
  2         55  
4 2     2   1026 use utf8;
  2         15  
  2         16  
5              
6             package MetaPOD::Exception;
7             $MetaPOD::Exception::VERSION = '0.3.6';
8 2     2   1062 use Moo qw( extends );
  2         21349  
  2         15  
9              
10             # ABSTRACT: Base class for MetaPOD exceptions.
11              
12             our $AUTHORITY = 'cpan:KENTNL'; # AUTHORITY
13              
14              
15              
16              
17              
18              
19              
20              
21              
22              
23              
24              
25              
26             extends 'Throwable::Error';
27              
28 2     2   3475 no Moo;
  2         4  
  2         11  
29              
30             1;
31              
32             __END__