File Coverage

blib/lib/Devel/Chitin/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             package Devel::Chitin::Exception;
2              
3 34     34   254 use strict;
  34         65  
  34         995  
4 34     34   168 use warnings;
  34         62  
  34         1434  
5              
6             our $VERSION = '0.15';
7 34     34   184 use base 'Devel::Chitin::Location';
  34         53  
  34         6239  
8              
9             sub _required_properties {
10 34     34   98 my $class = shift;
11 34         184 my @inh_props = $class->SUPER::_required_properties;
12 34         88 push @inh_props, 'exception';
13 34         244 return @inh_props;
14             }
15              
16             BEGIN {
17 34     34   374 __PACKAGE__->_make_accessors();
18             }
19              
20             1;
21              
22             __END__