retrofit2.adapter.rxjava.HttpException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of adapter-rxjava Show documentation
Show all versions of adapter-rxjava Show documentation
A Retrofit CallAdapter for RxJava's stream types.
package retrofit2.adapter.rxjava;
import retrofit2.Response;
/** @deprecated Use {@link retrofit2.HttpException}. */
@Deprecated
public final class HttpException extends retrofit2.HttpException {
public HttpException(Response> response) {
super(response);
}
}