Skip to content

Commit

Permalink
pass true for constructor with message too
Browse files Browse the repository at this point in the history
  • Loading branch information
bbeaudreault committed Mar 29, 2022
1 parent 91c072e commit 2d235e3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ public CallDroppedException() {
// Absence of this constructor prevents proper unwrapping of
// remote exception on the client side
public CallDroppedException(String message) {
super(message);
super(true, message);
}
}

0 comments on commit 2d235e3

Please sign in to comment.