File Coverage

blib/lib/Pinto/Exception.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             # ABSTRACT: Base class for Pinto exceptions
2              
3             package Pinto::Exception;
4              
5 66     66   689 use Moose;
  66         363985  
  66         574  
6 66     66   447010 use MooseX::MarkAsMethods ( autoclean => 1 );
  66         146392  
  66         556  
7              
8             #------------------------------------------------------------------------------
9              
10             our $VERSION = '0.13'; # VERSION
11              
12             #------------------------------------------------------------------------------
13              
14             extends qw(Throwable::Error);
15              
16             #------------------------------------------------------------------------------
17              
18             __PACKAGE__->meta->make_immutable;
19              
20             #------------------------------------------------------------------------------
21             1;
22              
23             __END__
24              
25             =pod
26              
27             =encoding UTF-8
28              
29             =for :stopwords Jeffrey Ryan Thalhammer
30              
31             =head1 NAME
32              
33             Pinto::Exception - Base class for Pinto exceptions
34              
35             =head1 VERSION
36              
37             version 0.13
38              
39             =head1 AUTHOR
40              
41             Jeffrey Ryan Thalhammer <jeff@stratopan.com>
42              
43             =head1 COPYRIGHT AND LICENSE
44              
45             This software is copyright (c) 2015 by Jeffrey Ryan Thalhammer.
46              
47             This is free software; you can redistribute it and/or modify it under
48             the same terms as the Perl 5 programming language system itself.
49              
50             =cut