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