File Coverage

blib/lib/Cassandra/Client/Error/ClientThrottlingError.pm
Criterion Covered Total %
statement 11 12 91.6
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 15 18 83.3


line stmt bran cond sub pod time code
1             package Cassandra::Client::Error::ClientThrottlingError;
2             our $AUTHORITY = 'cpan:TVDW';
3             $Cassandra::Client::Error::ClientThrottlingError::VERSION = '0.21';
4 2     2   13 use parent 'Cassandra::Client::Error::Base';
  2         5  
  2         12  
5 2     2   194 use 5.010;
  2         10  
6 2     2   8 use strict;
  2         22  
  2         47  
7 2     2   8 use warnings;
  2         4  
  2         149  
8              
9 0     0 0   sub to_string { "Client-induced failure by throttling mechanism" }
10              
11             1;
12              
13             __END__