package com.github.ltsopensource.cmd; /** * @author Robert HG (254963746@qq.com) 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); } }