File Coverage

blib/lib/Tree/Simple/View/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 Tree::Simple::View::Exceptions;
3              
4 7     7   27 use strict;
  7         7  
  7         156  
5 7     7   21 use warnings;
  7         9  
  7         299  
6              
7             our $VERSION = '0.19';
8              
9 7         37 use Class::Throwable qw(
10             Tree::Simple::View::InsufficientArguments
11             Tree::Simple::View::AbstractMethod
12             Tree::Simple::View::AbstractClass
13             Tree::Simple::View::CompilationFailed
14 7     7   3057 );
  7         20137  
15              
16             1;
17              
18             __END__