File Coverage

blib/lib/Net/API/RPX/Exception.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1 7     7   2887 use 5.006;
  7         17  
  7         201  
2 7     7   23 use strict;
  7         7  
  7         149  
3 7     7   24 use warnings;
  7         7  
  7         307  
4              
5             package Net::API::RPX::Exception;
6              
7             # ABSTRACT: A Base class for Net::API::RPX exceptions.
8              
9             our $VERSION = '1.000000';
10              
11             our $AUTHORITY = 'cpan:KONOBI'; # AUTHORITY
12              
13 7     7   441 use Moose qw( extends with );
  7         315922  
  7         33  
14              
15             extends 'Throwable::Error';
16              
17             with qw( Throwable::X );
18              
19             __PACKAGE__->meta->make_immutable( inline_constructor => 0 );
20              
21 7     7   25123 no Moose;
  7         13  
  7         27  
22              
23             1;
24              
25             __END__
26              
27             =pod
28              
29             =encoding UTF-8
30              
31             =head1 NAME
32              
33             Net::API::RPX::Exception - A Base class for Net::API::RPX exceptions.
34              
35             =head1 VERSION
36              
37             version 1.000000
38              
39             =head1 AUTHORS
40              
41             =over 4
42              
43             =item *
44              
45             Scott McWhirter <konobi@cpan.org>
46              
47             =item *
48              
49             Kent Fredric <kentnl@cpan.org>
50              
51             =back
52              
53             =head1 COPYRIGHT AND LICENSE
54              
55             This software is Copyright (c) 2015 by Cloudtone Studios.
56              
57             This is free software, licensed under:
58              
59             The (three-clause) BSD License
60              
61             =cut