blob: 0bb760af3c9bbff301ac1e3b267a2a8b4e01f67f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
package MooseX::Net::API::Error;
# ABSTRACT: Throw error
use Moose;
use JSON;
use Moose::Util::TypeConstraints;
use overload '""' => \&error;
subtype error => as 'Str';
coerce error => from 'HashRef' => via { JSON::encode_json $_};
has http_error => (
is => 'ro',
isa => 'HTTP::Response',
handles => { http_message => 'message', http_code => 'code' }
);
has reason => (
is => 'ro',
isa => 'error',
predicate => 'has_reason',
coerce => 1
);
sub error {
my $self = shift;
return
( $self->has_reason && $self->reason )
|| ( $self->http_message . ": " . $self->http_code )
|| 'unknown';
}
1;
=head1 SYNOPSIS
MooseX::Net::API::Error->new(reason => "'useragent' is required");
or
MooseX::Net::API::Error->new()
=head1 DESCRIPTION
|