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 {
private static final long serialVersionUID = -2745556685325930983L;
public ResolveFailException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy