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::MinFraud::Error::IPAddressNotFound - An exception thrown when an IP address is not found by the MaxMind minFraud service

VERSION

version 0.001002

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::IPAddressNotFound') ) {
          log_ip_address_not_found_error( ip_address => $_->ip_address );
      }

      # handle other exceptions
  };

DESCRIPTION

This class represents an error that occurs when an IP address is not found by the MaxMind minFraud service.

METHODS

The message and stack_trace methods are inherited from Throwable::Error. It also provide one method of its own:

ip_address

Returns the IP address that could not be found.

AUTHOR

Mateu Hunter <mhunter@maxmind.com>

COPYRIGHT AND LICENSE

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