File Coverage

blib/lib/IOC/Exceptions.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1              
2             package IOC::Exceptions;
3              
4 26     26   155 use strict;
  26         49  
  26         987  
5 26     26   196 use warnings;
  26         54  
  26         2136  
6              
7             our $VERSION = '0.07';
8              
9 26         216 use Class::Throwable qw(
10             IOC::NotFound
11             IOC::ServiceNotFound
12             IOC::ServiceAlreadyExists
13             IOC::UnableToLocateService
14             IOC::ContainerNotFound
15             IOC::ContainerAlreadyExists
16             IOC::IllegalOperation
17             IOC::InsufficientArguments
18             IOC::InitializationError
19             IOC::ClassLoadingError
20             IOC::ConstructorNotFound
21             IOC::MethodNotFound
22             IOC::OperationFailed
23             IOC::ConfigurationError
24 26     26   47111 );
  26         292194  
25              
26             $Class::Throwable::DEFAULT_VERBOSITY = 2;
27              
28             1;
29              
30             __END__