Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=0.7.0-SNAPSHOT
version=0.8.0-SNAPSHOT
ossrh.username=tecton-team
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,10 @@ public HttpResponse performRequest(String endpoint, HttpMethod method, String re
try (Response response = call.execute()) {
return new HttpResponse(response);
} catch (Exception e) {
throw new TectonClientException(e.getMessage());
throw new TectonClientException(
String.format(
"Caught Exception of type %s and message %s", e.getClass().getName(), e.getMessage()),
e);
}
}

Expand Down