NAME
WebService::MinFraud::Error::HTTP - An HTTP transport error
VERSION
version 1.004000
SYNOPSIS
use 5.010;
use WebService::MinFraud::Client;
use Scalar::Util qw( blessed );
use Try::Tiny;
my $client = WebService::MinFraud::Client->new(
user_id => 42,
license_key => 'abcdef123456',
);
try {
my $request = { device => { ip_address => '24.24.24.24' } };
$client->insights( $request );
}
catch {
die $_ unless blessed $_;
if ( $_->isa('WebService::MinFraud::Error::HTTP') ) {
log_http_error(
status => $_->http_status,
uri => $_->uri,
);
}
# handle other exceptions
};
DESCRIPTION
This class represents an HTTP transport error. It extends Throwable::Error and adds attributes of its own.
METHODS
The message
and stack_trace
methods are inherited from Throwable::Error. It also provide two methods of its own:
http_status
Returns the HTTP status. This should be either a 4xx or 5xx error.
uri
Returns the URI which gave the HTTP error.
SUPPORT
Bugs may be submitted through https://github.com/maxmind/minfraud-api-perl/issues.
AUTHOR
Mateu Hunter <mhunter@maxmind.com>
COPYRIGHT AND LICENSE
This software is copyright (c) 2015 - 2017 by MaxMind, Inc.
This is free software; you can redistribute it and/or modify it under the same terms as the Perl 5 programming language system itself.