File Coverage

blib/lib/Cassandra/Client/Error/UnavailableException.pm
Criterion Covered Total %
statement 11 14 78.5
branch n/a
condition n/a
subroutine 4 7 57.1
pod 0 3 0.0
total 15 24 62.5


line stmt bran cond sub pod time code
1             package Cassandra::Client::Error::UnavailableException;
2             our $AUTHORITY = 'cpan:TVDW';
3             $Cassandra::Client::Error::UnavailableException::VERSION = '0.21';
4 13     13   83 use parent 'Cassandra::Client::Error::Base';
  13         25  
  13         87  
5 13     13   1170 use 5.010;
  13         47  
6 13     13   104 use strict;
  13         28  
  13         377  
7 13     13   76 use warnings;
  13         39  
  13         1899  
8              
9 0     0 0   sub cl { $_[0]{cl} }
10 0     0 0   sub required { $_[0]{required} }
11 0     0 0   sub alive { $_[0]{alive} }
12              
13             1;
14              
15             __END__