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.13_004'; # TRIAL
4              
5 1     1   222 $Cassandra::Client::Error::ReadTimeoutException::VERSION = '0.13004';use parent 'Cassandra::Client::Error::Base';
  1         509  
  1         4  
6 1     1   61 use 5.010;
  1         4  
7 1     1   4 use strict;
  1         2  
  1         15  
8 1     1   4 use warnings;
  1         2  
  1         105  
9              
10 0     0 0   sub is_timeout { 1 }
11 0     0 0   sub cl { $_[0]{cl} }
12 0     0 0   sub write_type { $_[0]{write_type} }
13 0     0 0   sub blockfor { $_[0]{blockfor} }
14 0     0 0   sub received { $_[0]{received} }
15 0     0 0   sub data_retrieved { $_[0]{data_retrieved} }
16              
17             1;
18              
19             __END__