|
@@ -544,7 +544,11 @@ public class MesController extends SuperController<MesNoticeService, Long, MesNo
|
|
|
String returnData = mesNotice.getAcceptPar();
|
|
|
ret = JSONObject.parseObject(returnData);
|
|
|
//本地代码处理
|
|
|
- this.handle(ret, mesNotice.getApiType(), mesNotice.getLineCode(), mesNotice.getApiAddress());
|
|
|
+ try {
|
|
|
+ this.handle(ret, mesNotice.getApiType(), mesNotice.getLineCode(), mesNotice.getApiAddress());
|
|
|
+ }catch (Exception e){
|
|
|
+ throw new BizException(e.getMessage());
|
|
|
+ }
|
|
|
}
|
|
|
} else {
|
|
|
ret = new JSONObject();
|