Skip to content

Commit f6b2005

Browse files
author
Alan Moran
committed
Fixes ServerAccessorDriver NPE on error response with no body.
1 parent de13dce commit f6b2005

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/main/java/threescale/v3/api/impl/ServerAccessorDriver.java

+4
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,8 @@ public HttpResponse get(final String urlParams) throws ServerError {
7474
return new HttpResponse(connection.getResponseCode(), getBody(connection.getErrorStream()));
7575
} catch (IOException e) {
7676
throw new ServerError(e.getMessage());
77+
} catch (NullPointerException npe) {
78+
throw new ServerError("NullPointerException thrown ServerAccessorDriver::get, urlParams were "+urlParams);
7779
}
7880
} catch (NullPointerException npe) {
7981
throw new ServerError("NullPointerException thrown ServerAccessorDriver::get, urlParams were "+urlParams);
@@ -137,6 +139,8 @@ public HttpResponse post(final String urlParams,final String data) throws Server
137139
(connection.getErrorStream() == null) ? getBody(connection.getInputStream()) : getBody(connection.getErrorStream()));
138140
} catch (IOException e) {
139141
throw new ServerError(e.getMessage());
142+
} catch (NullPointerException npe) {
143+
throw new ServerError("NullPointerException thrown ServerAccessorDriver::post, urlParams were "+urlParams+", data was "+data);
140144
}
141145
} catch (NullPointerException npe) {
142146
throw new ServerError("NullPointerException thrown ServerAccessorDriver::post, urlParams were "+urlParams+", data was "+data);

0 commit comments

Comments
 (0)