com.seejoke.http.exception.HttpProcessException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of core-tools Show documentation
Show all versions of core-tools Show documentation
提供java常用的、流行的工具方法,减少项目冗余代码
package com.seejoke.http.exception;
/**
* @auther: [email protected]
* @date: 2018/5/8 09:58
* @description:
*/
public class HttpProcessException extends Exception {
private static final long serialVersionUID = -2749168865492921426L;
public HttpProcessException(Exception e) {
super(e);
}
/**
* @param msg 消息
*/
public HttpProcessException(String msg) {
super(msg);
}
/**
* @param message 异常消息
* @param e 异常
*/
public HttpProcessException(String message, Exception e) {
super(message, e);
}
}