> @@ -90,7 +94,7 @@ private String parseMessage(HttpResponse response) {
> try {
> return
> Strings2.toStringAndClose(response.getPayload().openStream());
> } catch (IOException e) {
> - throw Throwables.propagate(e);
> + return Throwables.getStackTraceAsString(e);
Fair enough. I guess my thinking was that the exception turned-into-string
would get put inside the exception anyway.
---
Reply to this email directly or view it on GitHub:
https://github.com/jclouds/jclouds-labs/pull/149/files#r26168037