The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

NAME

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

VERSION

version 0.000006

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 error which is embedded into the HTML of a hosted form. It will only be thrown if you have enabled "validate_hosted_form_uri" in WebService::PayPal::PaymentsAdvanced.

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.

http_response

Returns the HTTP::Response object which was returned when attempting to GET the hosted form.

http_status

Returns the HTTP status code for the response.

AUTHOR

Olaf Alders <olaf@wundercounter.com>

COPYRIGHT AND LICENSE

This software is Copyright (c) 2015 by MaxMind, Inc..

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)