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

com.foxinmy.weixin4j.http.HttpClientException Maven / Gradle / Ivy

There is a newer version: 1.10.2
Show newest version
package com.foxinmy.weixin4j.http;


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