com.launchdarkly.eventsource.UnsuccessfulResponseException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of okhttp-eventsource Show documentation
Show all versions of okhttp-eventsource Show documentation
EventSource Implementation built on OkHttp
package com.launchdarkly.eventsource;
public class UnsuccessfulResponseException extends Exception {
private final int code;
public UnsuccessfulResponseException(int code) {
super("Unsuccessful response code received from stream: " + code);
this.code = code;
}
public int getCode() {
return code;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy