Skip to content

Commit

Permalink
Add RequestCanceledException without constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
sbernard31 committed May 4, 2023
1 parent ab21e24 commit 1008306
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ public class RequestCanceledException extends RuntimeException {

private static final long serialVersionUID = 1L;

public RequestCanceledException() {
}

public RequestCanceledException(String message, Object... args) {
super(String.format(message, args));
}
Expand Down

0 comments on commit 1008306

Please sign in to comment.