| blib/lib/WebService/Slack/WebApi/Exception.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % | 
| statement | 18 | 18 | 100.0 | 
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 6 | 6 | 100.0 | 
| pod | n/a | ||
| total | 24 | 24 | 100.0 | 
| line | stmt | bran | cond | sub | pod | time | code | 
|---|---|---|---|---|---|---|---|
| 1 | package WebService::Slack::WebApi::Exception; | ||||||
| 2 | 4 | 4 | 30 | use strict; | |||
| 4 | 12 | ||||||
| 4 | 139 | ||||||
| 3 | 4 | 4 | 23 | use warnings; | |||
| 4 | 15 | ||||||
| 4 | 118 | ||||||
| 4 | 4 | 4 | 62 | use utf8; | |||
| 4 | 18 | ||||||
| 4 | 65 | ||||||
| 5 | 4 | 4 | 124 | use parent 'Exception::Tiny'; | |||
| 4 | 15 | ||||||
| 4 | 45 | ||||||
| 6 | |||||||
| 7 | package WebService::Slack::WebApi::Exception::FailureResponse; | ||||||
| 8 | 4 | 4 | 36134 | use parent -norequire, 'WebService::Slack::WebApi::Exception'; | |||
| 4 | 11 | ||||||
| 4 | 24 | ||||||
| 9 | use Class::Accessor::Lite ( | ||||||
| 10 | 4 | 20 | ro => [qw/ response /], | ||||
| 11 | 4 | 4 | 215 | ); | |||
| 4 | 11 | ||||||
| 12 | |||||||
| 13 | 1; | ||||||
| 14 | |||||||
| 15 |