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 6     6   19 use strict;
  6         6  
  6         124  
5 6     6   17 use warnings;
  6         6  
  6         205  
6              
7             our $VERSION = '0.180001';
8              
9 6         33 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 6     6   2637 );
  6         16318  
15            
16             1;
17              
18             __END__