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 4     4   1775 use Moose;
  4         9  
  4         20  
4 4     4   23088 use namespace::autoclean;
  4         8  
  4         29  
5             with 'Throwable';
6              
7             has message => ( is => 'ro', isa => 'Str', required => 1 );
8              
9             __PACKAGE__->meta->make_immutable;
10             1;