com.launchdarkly.sdk.server.HttpErrorException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of launchdarkly-java-server-sdk Show documentation
Show all versions of launchdarkly-java-server-sdk Show documentation
Official LaunchDarkly SDK for Java
package com.launchdarkly.sdk.server;
@SuppressWarnings("serial")
final class HttpErrorException extends Exception {
private final int status;
public HttpErrorException(int status) {
super("HTTP error " + status);
this.status = status;
}
public int getStatus() {
return status;
}
}