All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.ipokerface.weixin.request.http.HttpClientException Maven / Gradle / Ivy

There is a newer version: 1.5.0
Show newest version
package cn.ipokerface.weixin.request.http;

/**
 * Created by       PokerFace
 * Create Date      2019-12-27.
 * Email:           [email protected]
 * Version          1.0.0
 * 

* Description: */ public class HttpClientException extends Exception{ private static final long serialVersionUID = -1760373205801759702L; /** * Construct a new instance of {@code HttpClientException} with the given * message. * * @param msg * the message */ public HttpClientException(String msg) { super(msg); } /** * Construct a new instance of {@code HttpClientException} with the given * message and exception. * * @param msg * the message * @param ex * the exception */ public HttpClientException(String msg, Throwable ex) { super(msg, ex); } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy