File Coverage

blib/lib/Cassandra/Client/Error/WriteTimeoutException.pm
Criterion Covered Total %
statement 11 16 68.7
branch n/a
condition n/a
subroutine 4 9 44.4
pod 0 5 0.0
total 15 30 50.0


line stmt bran cond sub pod time code
1             package Cassandra::Client::Error::WriteTimeoutException;
2             our $AUTHORITY = 'cpan:TVDW';
3             $Cassandra::Client::Error::WriteTimeoutException::VERSION = '0.13_004'; # TRIAL
4              
5 1     1   6 $Cassandra::Client::Error::WriteTimeoutException::VERSION = '0.13004';use parent 'Cassandra::Client::Error::Base';
  1         2  
  1         4  
6 1     1   56 use 5.010;
  1         3  
7 1     1   4 use strict;
  1         3  
  1         19  
8 1     1   4 use warnings;
  1         2  
  1         93  
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              
16             1;
17              
18             __END__