com.github.ltsopensource.cmd.HttpCmdException Maven / Gradle / Ivy
package com.github.ltsopensource.cmd;
/**
* @author Robert HG ([email protected]) on 10/28/15.
*/
public class HttpCmdException extends RuntimeException{
private static final long serialVersionUID = 7563802613921477340L;
public HttpCmdException() {
super();
}
public HttpCmdException(String message) {
super(message);
}
public HttpCmdException(String message, Throwable cause) {
super(message, cause);
}
public HttpCmdException(Throwable cause) {
super(cause);
}
}