소스 검색

Merge remote-tracking branch 'origin/dev/mapping_20210824' into test

zhaops 3 년 전
부모
커밋
ac1b8fbed2
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      cdssman-service/src/main/java/com/diagbot/facade/MappingConfigFacade.java

+ 2 - 2
cdssman-service/src/main/java/com/diagbot/facade/MappingConfigFacade.java

@@ -253,7 +253,7 @@ public class MappingConfigFacade extends MappingConfigServiceImpl {
         if (RespDTOUtil.respIsOK(respDTO)) {
             return respDTO.data;
         } else {
-            throw new CommonException(CommonErrorCode.SERVER_IS_ERROR, respDTO.msg);
+            throw new CommonException(CommonErrorCode.codeOf(respDTO.code), respDTO.msg);
         }
     }
 
@@ -272,7 +272,7 @@ public class MappingConfigFacade extends MappingConfigServiceImpl {
         if (RespDTOUtil.respIsOK(respDTO)) {
             return respDTO.data;
         } else {
-            throw new CommonException(CommonErrorCode.SERVER_IS_ERROR, respDTO.msg);
+            throw new CommonException(CommonErrorCode.codeOf(respDTO.code), respDTO.msg);
         }
     }