Class InvalidRequestException

All Implemented Interfaces:
Serializable

public final class InvalidRequestException extends GeoIp2Exception
This class represents a non-specific error returned by MaxMind's GeoIP2 web service. This occurs when the web service is up and responding to requests, but the request sent was invalid in some way.
See Also:
  • Constructor Details

    • InvalidRequestException

      public InvalidRequestException(String message, String code, URL url)
      Parameters:
      message - A message explaining the cause of the error.
      code - The error code returned by the web service.
      url - The URL queried.
    • InvalidRequestException

      public InvalidRequestException(String message, String code, int httpStatus, URL url, Throwable e)
      Parameters:
      message - A message explaining the cause of the error.
      code - The error code returned by the web service.
      httpStatus - The HTTP status of the response.
      url - The URL queried.
      e - The cause of the exception.
  • Method Details

    • getCode

      public String getCode()
      Returns:
      The error code returned by the MaxMind web service.
    • getUrl

      public URL getUrl()
      Returns:
      the URL queried.