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

cn.dreampie.client.exception.HttpClientException Maven / Gradle / Ivy

The newest version!
package cn.dreampie.client.exception;

/**
 * HttpClientException
 */
public class HttpClientException extends RuntimeException {

  /**
   * Constructor.
   */
  public HttpClientException() {
  }

  /**
   * Constructor.
   *
   * @param message Exception message.
   */
  public HttpClientException(String message) {
    super(message);
  }

  /**
   * Constructor.
   *
   * @param cause An exception.
   */
  public HttpClientException(Throwable cause) {
    super(cause);
  }

  /**
   * Constructor.
   *
   * @param message Exception message.
   * @param cause   An exception.
   */
  public HttpClientException(String message, Throwable cause) {
    super(message, cause);
  }

}














© 2015 - 2024 Weber Informatics LLC | Privacy Policy