File Coverage

lib/Net/API/RPX/Exception/Network.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1 4     4   499 use 5.006;
  4         10  
  4         110  
2 4     4   13 use strict;
  4         5  
  4         122  
3 4     4   14 use warnings;
  4         11  
  4         201  
4              
5             package Net::API::RPX::Exception::Network;
6              
7             # ABSTRACT: A Class of exceptions for network connectivity issues.
8              
9             our $VERSION = '1.000000';
10              
11             our $AUTHORITY = 'cpan:KONOBI'; # AUTHORITY
12              
13 4     4   376 use Moose qw( has extends );
  4         285978  
  4         22  
14 4     4   15353 use namespace::autoclean;
  4         925  
  4         26  
15              
16             extends 'Net::API::RPX::Exception';
17              
18             has 'ua_result' => ( isa => 'Ref', is => 'ro', required => 1 );
19             has 'status_line' => ( isa => 'Str', is => 'ro', required => 1 );
20              
21             __PACKAGE__->meta->make_immutable( inline_constructor => 0 );
22 4     4   351 no Moose;
  4         7  
  4         19  
23             1;
24              
25             __END__
26              
27             =pod
28              
29             =encoding UTF-8
30              
31             =head1 NAME
32              
33             Net::API::RPX::Exception::Network - A Class of exceptions for network connectivity issues.
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