no.ks.fiks.dokumentlager.klient.DokumentlagerHttpException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dokumentlager-klient Show documentation
Show all versions of dokumentlager-klient Show documentation
Klient for opplasting, sletting og nedlasting av dokumenter fra Fiks Dokumentlager
The newest version!
package no.ks.fiks.dokumentlager.klient;
public class DokumentlagerHttpException extends RuntimeException {
private final int status;
private final String response;
DokumentlagerHttpException(String message, int status, String response) {
super(message);
this.status = status;
this.response = response;
}
public int getStatus() {
return status;
}
public String getResponse() {
return response;
}
}