File Coverage

blib/lib/PawsX/Waiter/Exception.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package PawsX::Waiter::Exception;
2              
3 2     2   24 use Moose;
  2         6  
  2         13  
4             extends 'Throwable::Error';
5              
6             has last_response => (
7             is => 'ro',
8             isa => 'HashRef|Undef',
9             required => 0
10             );
11              
12             package PawsX::Waiter::Exception::TimeOut;
13 2     2   14310 use Moose;
  2         6  
  2         8  
14             extends 'PawsX::Waiter::Exception';
15              
16             1;