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

com.seejoke.http.exception.HttpProcessException Maven / Gradle / Ivy

There is a newer version: 0.3
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy