File Coverage

blib/lib/Parse/StackTrace/Exceptions.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 Parse::StackTrace::Exceptions;
2 1     1   1309 use strict;
  1         3  
  1         65  
3             use Exception::Class (
4 1         8 'Parse::StackTrace::Exception',
5            
6             'Parse::StackTrace::Exception::NotAFrame' =>
7             { isa => 'Parse::StackTrace::Exception' },
8              
9 1     1   3533 );
  1         50667  
10              
11             1;
12              
13             __END__
14              
15             =head1 NAME
16              
17             Parse::StackTrace::Exceptions - Exceptions that can be thrown by
18             Parse::StackTrace modules
19              
20             =head1 DESCRIPTION
21              
22             There are no public methods that can throw an exception, so you generally
23             don't need to worry about this.