The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

GeoIP2::Error::HTTP - An HTTP transport error

VERSION

version 0.0200

SYNOPSIS

  use 5.008;

  use GeoIP2::WebService::Client;
  use Scalar::Util qw( blessed );

  my $client = GeoIP2::WebService::Client->new(
      user_id     => 42,
      license_key => 'abcdef123456',
  );

  try {
      $client->omni( ip => '24.24.24.24' );
  }
  catch {
      die $_ unless blessed $_;
      if ( $_->isa('GeoIP2::Error::HTTP') ) {
          log_http_error(
              status => $_->http_status(),
              uri    => $_->uri(),
          );
      }

      # handle other exceptions
  };

DESCRIPTION

This class represents an HTTP transport error. It extends Throwable::Error and adds attributes of its own.

METHODS

The $error->message(), and $error->stack_trace() methods are inherited from Throwable::Error. It also provide two methods of its own:

$error->http_status()

Returns the HTTP status. This should be either a 4xx or 5xx error.

$error->uri()

Returns the URI which gave the HTTP error.

AUTHOR

Dave Rolsky <autarch@urth.org>

COPYRIGHT AND LICENSE

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

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)