Class InvalidRequestException

All Implemented Interfaces:
Serializable

public class InvalidRequestException extends MinFraudException
This class represents a non-specific error returned by MaxMind's minFraud 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, URI uri)
      Parameters:
      message - A message explaining the cause of the error.
      code - The error code returned by the web service.
      uri - The URL queried.
    • InvalidRequestException

      public InvalidRequestException(String message, String code, int httpStatus, URI uri, 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.
      uri - The URL queried.
      e - The cause of the exception.
  • Method Details

    • getCode

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

      public final int getHttpStatus()
      Returns:
      The integer HTTP status returned by the MaxMind web service. Will be 0 if it was not set at throw time.
    • getUri

      public URI getUri()
      Returns:
      the URI queried.
    • getUrl

      @Deprecated public URL getUrl()
      Deprecated.
      Use getUri() instead
      Returns:
      the URL queried.