org.shoulder.http.exception.ResolveFailException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of shoulder-http Show documentation
Show all versions of shoulder-http Show documentation
Shoulder 基础模块-Http,非常轻量的一个模块,含几十行核心代码,在 Spring RestTemplate 基础上实现了AOP日志、异常处理、统一响应解析能力。
package org.shoulder.http.exception;
import org.shoulder.core.exception.BaseRuntimeException;
/**
* 解析失败
*
* @author lym
*/
public class ResolveFailException extends BaseRuntimeException {
public ResolveFailException(Throwable cause) {
super(cause);
}
}