| blib/lib/PayProp/API/Public/Client/Error/Authorization.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::Authorization; | ||||||
| 2 | |||||||
| 3 | 3 | 3 | 481133 | use strict; | |||
| 3 | 9 | ||||||
| 3 | 159 | ||||||
| 4 | 3 | 3 | 19 | use warnings; | |||
| 3 | 5 | ||||||
| 3 | 302 | ||||||
| 5 | |||||||
| 6 | 3 | 3 | 1160 | use Mouse; | |||
| 3 | 74005 | ||||||
| 3 | 41 | ||||||
| 7 | |||||||
| 8 | has code => ( is => 'ro', isa => 'Maybe[Str]' ); | ||||||
| 9 | has message => ( is => 'ro', isa => 'Str' ); | ||||||
| 10 | |||||||
| 11 | __PACKAGE__->meta->make_immutable; | ||||||
| 12 | |||||||
| 13 | __END__ |