Class InvalidRequestException

All Implemented Interfaces:
Serializable

public final 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

    • code

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

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

      public URI uri()
      Returns:
      the URI queried.