The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package GeoIP2::Role::Error::HTTP;
{
  $GeoIP2::Role::Error::HTTP::VERSION = '0.0302';
}

use strict;
use warnings;

use GeoIP2::Types qw( HTTPStatus Str URIObject );

use Moo::Role;

has http_status => (
    is       => 'ro',
    isa      => HTTPStatus,
    required => 1,
);

has uri => (
    is       => 'ro',
    isa      => URIObject,
    required => 1,
);

1;