Skip to content

Commit

Permalink
Update src/main/java/org/kohsuke/github/ServiceDownException.java
Browse files Browse the repository at this point in the history
  • Loading branch information
bitwiseman authored Mar 15, 2024
1 parent 2ff9ae0 commit 0fb591f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/main/java/org/kohsuke/github/ServiceDownException.java
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,13 @@
* @author <a href="mailto:[email protected]">Rastislav Budinsky</a>
*/
public class ServiceDownException extends HttpException {

/**
* Instantiates a new service down exception.
*
* @param connectorResponse
* the connector response to base this on
*/
public ServiceDownException(GitHubConnectorResponse connectorResponse) {
super(connectorResponse);
}
Expand Down

0 comments on commit 0fb591f

Please sign in to comment.