File Coverage

blib/lib/KiokuDB/Error.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package KiokuDB::Error;
2 20     20   8194 use Moose::Role;
  20         32  
  20         191  
3              
4 20     20   80667 use namespace::clean -except => 'meta';
  20         39  
  20         140  
5              
6             with qw(Throwable);
7              
8             requires qw(as_string);
9              
10             # ex: set sw=4 et:
11              
12             __PACKAGE__
13              
14             __END__