org.gitlab.api.GitlabAPIException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-gitlab-api Show documentation
Show all versions of java-gitlab-api Show documentation
A Java wrapper for the Gitlab Git Hosting Server API
package org.gitlab.api;
import java.io.IOException;
/**
* Gitlab API Exception
*/
public class GitlabAPIException extends IOException {
private int responseCode;
public GitlabAPIException(String message, Integer responseCode, Throwable cause) {
super(message, cause);
this.responseCode = responseCode;
}
public int getResponseCode() {
return responseCode;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy