|
|
@@ -14,7 +14,7 @@ import java.io.Serializable;
|
|
|
public class FeignProviderException extends RuntimeException implements Serializable {
|
|
|
|
|
|
// 是否是业务异常
|
|
|
- private boolean isBusinessException;
|
|
|
+ private boolean businessException;
|
|
|
|
|
|
// rpc调用方 服务名称
|
|
|
private String fromServiceName;
|
|
|
@@ -31,9 +31,9 @@ public class FeignProviderException extends RuntimeException implements Serializ
|
|
|
|
|
|
public FeignProviderException(){}
|
|
|
|
|
|
- public FeignProviderException(boolean isBusinessException,String serviceName,String uri,BaseCode baseCode,Throwable cause) {
|
|
|
+ public FeignProviderException(boolean businessException,String serviceName,String uri,BaseCode baseCode,Throwable cause) {
|
|
|
super(cause);
|
|
|
- this.isBusinessException = isBusinessException;
|
|
|
+ this.businessException = businessException;
|
|
|
this.serviceName = serviceName;
|
|
|
this.fromServiceName = RpcRequestInfo.getFromServiceName();
|
|
|
this.uri = uri;
|