NAME

WebService::PayPal::PaymentsAdvanced::Error::HTTP - An HTTP transport error

VERSION

version 0.000025

SYNOPSIS

use Try::Tiny;
use WebService::PayPal::PaymentsAdvanced;

my $payments = WebService::PayPal::PaymentsAdvanced->new(
    validate_hosted_form_uri => 1, ... );
my $response;

my $uri;
try {
    $response = $payments->create_secure_token(...);
}
catch {
    die $_ unless blessed $_;
    if ( $_->isa('WebService::PayPal::PaymentsAdvanced::Error::HTTP') ) {
        log_http_error(
            message       => $_->message,
            response_code => $_->http_status,
            http_content  => $_->http_response->content,
        );
    }

    # handle other exceptions
};

DESCRIPTION

This class represents an HTTP transport error.

It extends Throwable::Error and adds one attribute of its own.

METHODS

The $error->message(), and $error->stack_trace() methods are inherited from Throwable::Error.

WebService::PayPal::PaymentsAdvanced::Error::HTTP->throw_from_http_response

Throw a new instance of this class with a message created from the required http_response parameter. If the optional message_prefix is passed, the prefix will appear at the beginning of the message.

$ex->http_response

Returns the HTTP::Response object which was returned when attempting the HTTP request.

$ex->http_status

Returns the HTTP status code for the response.

request_uri

The URI of the request that caused the HTTP error.

SUPPORT

Bugs may be submitted through https://github.com/maxmind/webservice-paypal-paymentsadvanced/issues.

AUTHOR

Olaf Alders <olaf@wundercounter.com>

COPYRIGHT AND LICENSE

This software is copyright (c) 2018 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.