From 405ca5648a0e4d8fb9bb81ba2b8d52c12ee9e0d1 Mon Sep 17 00:00:00 2001 From: Guy Korland Date: Mon, 19 Nov 2012 17:13:49 +0200 Subject: [PATCH] Add missing argumnet in Exception --- core/src/main/java/org/jclouds/http/HttpResponseException.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/org/jclouds/http/HttpResponseException.java b/core/src/main/java/org/jclouds/http/HttpResponseException.java index 7a56c7ab23..dec772f7d6 100644 --- a/core/src/main/java/org/jclouds/http/HttpResponseException.java +++ b/core/src/main/java/org/jclouds/http/HttpResponseException.java @@ -58,7 +58,7 @@ public class HttpResponseException extends RuntimeException { public HttpResponseException(HttpCommand command, HttpResponse response, String content, Throwable cause) { this(String.format("command: %1$s failed with response: %2$s; content: [%3$s]", command.getCurrentRequest() - .getRequestLine(), response.getStatusLine()), command, response, content, cause); + .getRequestLine(), response.getStatusLine(), content), command, response, content, cause); } public HttpResponseException(String message, HttpCommand command, @Nullable HttpResponse response) {