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

com.obatis.config.response.result.FailBackResponse Maven / Gradle / Ivy

There is a newer version: 3.0.1-release
Show newest version
package com.obatis.config.response.result;

import com.obatis.constant.http.ResponseDefaultErrorCode;
import com.obatis.constant.http.ResponseDefaultErrorStatus;

/**
 * 微服务请求熔断回调结果集处理
 * @author HuangLongPu
 */
public class FailBackResponse {

	protected FailBackResponse(){}
	
	public static final ResultResponse RESULT = new ResultResponse();
	
	static {
		RESULT.setCode(ResponseDefaultErrorStatus.FAIL_BACK_ERROR_STATUS);
		RESULT.setMessage("请求错误,检查网络情况");
		RESULT.setErrorCode(ResponseDefaultErrorCode.NETWORK_ERROR_CODE);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy