File Coverage

lib/MooseX/DIC/ContainerException.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 MooseX::DIC::ContainerException;
2              
3 5     5   2382 use Moose;
  5         11  
  5         28  
4 5     5   31573 use namespace::autoclean;
  5         14  
  5         52  
5             with 'Throwable';
6              
7             has message => ( is => 'ro', isa => 'Str', required => 1 );
8              
9             __PACKAGE__->meta->make_immutable;
10             1;