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 n/a
total 8 10 80.0


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