File Coverage

blib/lib/Cassandra/Client/Error/ReadTimeoutException.pm
Criterion Covered Total %
statement 11 17 64.7
branch n/a
condition n/a
subroutine 4 10 40.0
pod 0 6 0.0
total 15 33 45.4


line stmt bran cond sub pod time code
1             package Cassandra::Client::Error::ReadTimeoutException;
2             our $AUTHORITY = 'cpan:TVDW';
3             $Cassandra::Client::Error::ReadTimeoutException::VERSION = '0.21';
4 13     13   147 use parent 'Cassandra::Client::Error::Base';
  13         64  
  13         92  
5 13     13   1242 use 5.010;
  13         97  
6 13     13   66 use strict;
  13         25  
  13         837  
7 13     13   67 use warnings;
  13         23  
  13         3045  
8              
9 0     0 0   sub is_timeout { 1 }
10 0     0 0   sub cl { $_[0]{cl} }
11 0     0 0   sub write_type { $_[0]{write_type} }
12 0     0 0   sub blockfor { $_[0]{blockfor} }
13 0     0 0   sub received { $_[0]{received} }
14 0     0 0   sub data_retrieved { $_[0]{data_retrieved} }
15              
16             1;
17              
18             __END__