ru.dmerkushov.httphelper.HttpHelperException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of http-helper Show documentation
Show all versions of http-helper Show documentation
A library to slightly ease the use of Apache HTTPClient
The newest version!
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package ru.dmerkushov.httphelper;
/**
*
* @author Dmitriy Merkushov
*/
public class HttpHelperException extends Exception {
private static final long serialVersionUID = 1L;
/**
* Creates a new instance of HttpHelperException
without detail message.
*/
public HttpHelperException() {
}
/**
* Constructs an instance of HttpHelperException
with the specified detail message.
* @param msg the detail message.
*/
public HttpHelperException(String msg) {
super(msg);
}
/**
* Constructs an instance of HttpHelperException
with the specified cause.
* @param cause the cause (which is saved for later retrieval by the Exception.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
*/
public HttpHelperException(Throwable cause) {
super(cause);
}
/**
* Constructs an instance of HttpHelperException
with the specified detail message and cause.
* @param msg the detail message.
* @param cause the cause (which is saved for later retrieval by the Exception.getCause() method). (A null value is permitted, and indicates that the cause is nonexistent or unknown.)
*/
public HttpHelperException(String msg, Throwable cause) {
super(msg, cause);
}
}