org.shoulder.http.exception.InvalidResponseException Maven / Gradle / Ivy
package org.shoulder.http.exception;
import org.shoulder.core.exception.BaseRuntimeException;
import java.io.Serial;
/**
* 响应不是 RestResult
*
* @author lym
*/
public class InvalidResponseException extends BaseRuntimeException {
@Serial private static final long serialVersionUID = -1935896109628796740L;
public InvalidResponseException(Throwable cause) {
super(cause);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy