Skip to content

Commit

Permalink
Add missing ServiceUnavailableException constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
edewata committed Oct 4, 2023
1 parent a74f773 commit b14b11c
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,7 @@ public ServiceUnavailableException(String message, Throwable cause) {
super(Response.Status.SERVICE_UNAVAILABLE, message, cause);
}

public ServiceUnavailableException(Data data) {
super(data);
}
}

0 comments on commit b14b11c

Please sign in to comment.