ru.tinkoff.kora.http.client.common.HttpClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-client-common Show documentation
Show all versions of http-client-common Show documentation
Kora http-client-common module
The newest version!
package ru.tinkoff.kora.http.client.common;
public abstract class HttpClientException extends RuntimeException {
public HttpClientException(String message) {
super(message);
}
public HttpClientException(String message, Throwable cause) {
super(message, cause);
}
public HttpClientException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy