File Coverage

blib/lib/ArangoDB/ServerException.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package ArangoDB::ServerException;
2 8     8   53 use strict;
  8         16  
  8         331  
3 8     8   46 use warnings;
  8         20  
  8         261  
4 8     8   69 use utf8;
  8         26  
  8         66  
5 8     8   369 use 5.008001;
  8         36  
  8         434  
6 8     8   9004 use Class::Accessor::Lite ( new => 1, ro => [qw/code status detail/] );
  8         14621  
  8         76  
7              
8             1;
9             __END__