Class HttpProtocolException

All Implemented Interfaces:
Serializable

@Concealed public class HttpProtocolException extends ProtocolException
Exceptions in the IdcHttpProtocol implementation
See Also:
  • Constructor Details

    • HttpProtocolException

      public HttpProtocolException(LocaleMessage message, int status, Map<String,String> headers)
      Parameters:
      message - the detail message.
      status - the http status code
      headers - the http headers
    • HttpProtocolException

      public HttpProtocolException(LocaleMessage message, int status, Map<String,String> headers, String body)
      Parameters:
      message - the detail message.
      status - the http status code
      headers - the http headers
      body - the http response body
    • HttpProtocolException

      public HttpProtocolException(LocaleMessage message, int status, Map<String,String> headers, String body, String uri)
      Parameters:
      message - the detail message.
      status - the http status code
      headers - the http headers
      body - the http response body
      uri - the http uri
  • Method Details

    • getStatus

      public int getStatus()
      Returns:
      the http status code
    • getHeaders

      public Map<String,String> getHeaders()
      Returns:
      the http headers
    • getBody

      public String getBody()
      Returns:
      the http response body if any
    • getUri

      public String getUri()
      Returns:
      the http uri if any