Skip to content

Commit a28f796

Browse files
authored
fix: tweak JSON parsing error message (#203)
Signed-off-by: Phil Adams <[email protected]>
1 parent b71bedc commit a28f796

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/ibm/cloud/sdk/core/service/BaseService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -521,7 +521,7 @@ protected <T> T processServiceCall(final ResponseConverter<T> converter, final R
521521
try {
522522
return converter.convert(response);
523523
} catch (Throwable t) {
524-
throw new InvalidServiceResponseException(response, "Error processing the http response", t);
524+
throw new InvalidServiceResponseException(response, "Error processing the HTTP response", t);
525525
}
526526
}
527527

0 commit comments

Comments
 (0)