Skip to content

Commit

Permalink
116687: Never handle exception with null message
Browse files Browse the repository at this point in the history
  • Loading branch information
nona-luypaert committed Jul 25, 2024
1 parent 156ad47 commit bdf7069
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ public void handleCompletion() {

@Override
public void handleException(Exception e) {
handleException(null, e);
handleException(e.getMessage(), e);
}

@Override
Expand Down

0 comments on commit bdf7069

Please sign in to comment.