|
@@ -7,6 +7,7 @@ import com.alibaba.fastjson.JSONObject;
|
|
|
import com.fdkankan.fusion.common.ResultData;
|
|
|
import com.fdkankan.fusion.config.FusionConfig;
|
|
|
import com.fdkankan.fusion.down.CaseDownService;
|
|
|
+import com.fdkankan.fusion.exception.BusinessException;
|
|
|
import com.fdkankan.fusion.httpClient.client.OtherClient;
|
|
|
import com.fdkankan.fusion.mq.vo.JmGaEventVo;
|
|
|
import com.fdkankan.rabbitmq.util.RabbitMqProducer;
|
|
@@ -95,10 +96,13 @@ public class PushJmAspect {
|
|
|
}
|
|
|
|
|
|
return result;
|
|
|
+ }catch (BusinessException e){
|
|
|
+ log.info("servicePush-BusinessException-error:{}",e);
|
|
|
+ return ResultData.error(e.getCode(),e.getMessage());
|
|
|
}catch (Exception e){
|
|
|
- log.info("servicePush--error:{}",e);
|
|
|
+ log.info("servicePush-Exception-error:{}",e);
|
|
|
}catch (Throwable throwable){
|
|
|
- log.info("servicePush--error:{}",throwable);
|
|
|
+ log.info("servicePush-throwable-error:{}",throwable);
|
|
|
}
|
|
|
return null;
|
|
|
}
|