File Coverage

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