io.github.wycst.wast.clients.http.definition.HttpClientException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wast Show documentation
Show all versions of wast Show documentation
Wast is a high-performance Java toolset library package that includes JSON, YAML, CSV, HttpClient, JDBC and EL engines
The newest version!
package io.github.wycst.wast.clients.http.definition;
/**
* @Author: wangy
* @Date: 2020/7/2 9:20
* @Description:
*/
public 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);
}
}