Deprecated.
The maintainer of this distribution has indicated that it is deprecated and no longer suitable for use.
NAME
WebService::MinFraud::Error::Generic - A generic exception class for WebService::MinFraud errors
VERSION
version 1.010000
SYNOPSIS
use 5.010;
use WebService::MinFraud::Client;
use Scalar::Util qw( blessed );
use Try::Tiny;
my $client = WebService::MinFraud::Client->new(
account_id => 42,
license_key => 'abcdef123456',
);
try {
my $request = { device => { ip_address => '24.24.24.24' } };
$client->insights( $request );
}
catch {
die $_ unless blessed $_;
die $_ if $_->isa('WebService::MinFraud::Error::Generic');
# handle other exceptions
};
DESCRIPTION
This class represents a generic error. It extends Throwable::Error and does not add any additional attributes.
METHODS
This class has two methods, both of which are inherited from Throwable::Error.
message
stack_trace
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 - 2020 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.