Package com.github.mrcritical.ironcache.model

Examples of com.github.mrcritical.ironcache.model.HTTPException


  @Override
  public boolean handleResponse(final HttpRequest request, final HttpResponse response, final boolean supportsRetry)
      throws IOException {
    log.trace("HTTP request {} resulted in {} with response {} and headers {}", request.getUrl().toString(),
        response.getStatusCode(), response.getStatusMessage(), response.getHeaders().toString());
    throw new HTTPException(response.getStatusCode(), response.getStatusMessage());
  }
View Full Code Here

TOP

Related Classes of com.github.mrcritical.ironcache.model.HTTPException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.