File Coverage

blib/lib/PayProp/API/Public/Client/Exception/Authorization.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::Authorization;
2 4     4   314517 use parent qw/ PayProp::API::Public::Client::Exception::Base /;
  4         10  
  4         48  
3              
4 4     4   204 use strict;
  4         9  
  4         101  
5 4     4   17 use warnings;
  4         9  
  4         293  
6              
7 6     6 1 67 sub error_class { 'PayProp::API::Public::Client::Error::Authorization' }
8 5     5 1 29 sub error_fields { qw/ code message / }
9              
10             1;
11              
12             __END__