line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
4
|
|
|
4
|
|
509
|
use 5.006; |
|
4
|
|
|
|
|
13
|
|
2
|
4
|
|
|
4
|
|
21
|
use strict; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
126
|
|
3
|
4
|
|
|
4
|
|
25
|
use warnings; |
|
4
|
|
|
|
|
6
|
|
|
4
|
|
|
|
|
308
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
package Net::API::RPX::Exception::Network; |
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
# ABSTRACT: A Class of exceptions for network connectivity issues. |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
our $VERSION = '1.000001'; |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
our $AUTHORITY = 'cpan:KONOBI'; # AUTHORITY |
12
|
|
|
|
|
|
|
|
13
|
4
|
|
|
4
|
|
468
|
use Moose qw( has extends ); |
|
4
|
|
|
|
|
373605
|
|
|
4
|
|
|
|
|
30
|
|
14
|
4
|
|
|
4
|
|
25792
|
use namespace::autoclean; |
|
4
|
|
|
|
|
10236
|
|
|
4
|
|
|
|
|
39
|
|
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
|
|
594
|
no Moose; |
|
4
|
|
|
|
|
8
|
|
|
4
|
|
|
|
|
28
|
|
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.000001 |
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) 2017 by Cloudtone Studios. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
This is free software, licensed under: |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
The (three-clause) BSD License |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
=cut |