File Coverage

blib/lib/PayProp/API/Public/Client/Exception/Response.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 2 2 100.0
total 18 18 100.0


line stmt bran cond sub pod time code
1             package PayProp::API::Public::Client::Exception::Response;
2 27     27   300777 use parent qw/ PayProp::API::Public::Client::Exception::Base /;
  27         57  
  27         240  
3              
4 27     27   1588 use strict;
  27         47  
  27         605  
5 27     27   127 use warnings;
  27         59  
  27         2337  
6              
7              
8 4     4 1 11 sub error_class { 'PayProp::API::Public::Client::Error::Response' }
9 3     3 1 9 sub error_fields { qw/ path message / }
10              
11             1;
12              
13             __END__