org.fennec.sdk.utilities.http.StatusCodeException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of java-sdk-utilities Show documentation
Show all versions of java-sdk-utilities Show documentation
Fennec Pipeline Java SDK Utilities
The newest version!
package org.fennec.sdk.utilities.http;
import lombok.Getter;
@Getter
public class StatusCodeException extends Exception {
private static final long serialVersionUID = 1L;
private int statusCode;
private String payload;
public StatusCodeException(int statusCode, String payload) {
super("Bad status code received: " + statusCode);
this.statusCode = statusCode;
this.payload = payload;
}
}