com.pongsky.kit.exception.HttpException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of config-core Show documentation
Show all versions of config-core Show documentation
Java 增强套件 之 config-core 模块
package com.pongsky.kit.exception;
/**
* HTTP 请求异常
*
* @author pengsenhao
*/
public class HttpException extends RuntimeException {
private static final long serialVersionUID = 746887887974658747L;
public HttpException(String message, Exception e) {
super(message, e);
}
}