File Coverage

blib/lib/PayProp/API/Public/Client/Error/Response.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package PayProp::API::Public::Client::Error::Response;
2              
3 2     2   288520 use strict;
  2         4  
  2         61  
4 2     2   6 use warnings;
  2         3  
  2         74  
5              
6 2     2   716 use Mouse;
  2         52746  
  2         8  
7              
8             has path => ( is => 'ro', isa => 'Maybe[Str]' );
9             has message => ( is => 'ro', isa => 'Str' );
10              
11             __PACKAGE__->meta->make_immutable;
12              
13             __END__