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.21';
4 13     13   86 use parent 'Cassandra::Client::Error::Base';
  13         27  
  13         740  
5 13     13   1315 use 5.010;
  13         68  
6 13     13   88 use strict;
  13         33  
  13         403  
7 13     13   57 use warnings;
  13         26  
  13         2252  
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              
15             1;
16              
17             __END__