File Coverage

blib/lib/Jmespath/AttributeException.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 11 72.7


line stmt bran cond sub pod time code
1             package Jmespath::AttributeException;
2 2     2   7 use Moose;
  2         3  
  2         10  
3             with 'Throwable';
4              
5             has 'message' => ( is => 'ro' );
6              
7 0     0 0   sub to_string { return shift->message; }
8              
9 2     2   8333 no Moose;
  2         4  
  2         7  
10             1;