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 8     8   46 use strict;
  8         12  
  8         191  
5 8     8   33 use warnings;
  8         12  
  8         362  
6              
7             our $VERSION = '0.20';
8              
9 8         38 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 8     8   3675 );
  8         26028  
15              
16             1;
17              
18             __END__