NAME
WebService::PayPal::PaymentsAdvanced::Error::Generic - A generic error
VERSION
version 0.000028
SYNOPSIS
use
Try::Tiny;
my
$payments
= WebService::PayPal::PaymentsAdvanced->new(...);
try
{
$payments
->create_secure_token(...);
}
catch
{
die
$_
unless
blessed
$_
;
if
(
$_
->isa(
'WebService::PayPal::PaymentsAdvanced::Error::Generic'
) )
{
log_generic_error(
message
=>
$_
->message,
params
=>
$_
->params,
);
}
# handle other exceptions
};
DESCRIPTION
This class represents a generic 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.
params
Returns a HashRef
of params which was received from PayPal.
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) 2022 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.