Skip to content

Commit 27b8996

Browse files
author
Jevgeni Koltšin
committed
reverted multi-catch
1 parent d0c23d9 commit 27b8996

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/main/java/com/creatubbles/api/core/CreatubblesRequest.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,9 @@ public Response getRawResponse() {
150150
if (response == null && futureResponse != null && futureResponse.isDone()) {
151151
try {
152152
response = futureResponse.get();
153-
} catch (InterruptedException | ExecutionException e) {
153+
} catch (InterruptedException e) {
154+
e.printStackTrace();
155+
} catch (ExecutionException e) {
154156
e.printStackTrace();
155157
}
156158
}

0 commit comments

Comments
 (0)