File Coverage

blib/lib/Jmespath/IndexException.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::IndexException;
2 2     2   8 use Moose;
  2         2  
  2         9  
3             with 'Throwable';
4              
5             has 'message' => ( is => 'ro' );
6              
7 0     0 0   sub to_string { return shift->message; }
8              
9 2     2   7698 no Moose;
  2         2  
  2         6  
10             1;