Authored by hugufei

添加try catch

... ... @@ -159,6 +159,7 @@ public class UserRecallResponseBuilder {
* @return
*/
private boolean isLikePriceArea(int uid, List<Integer> userPriceAreas,Integer sknPriceArea){
try {
if(userPriceAreas==null || userPriceAreas.isEmpty()){
return false;
}
... ... @@ -175,6 +176,10 @@ public class UserRecallResponseBuilder {
return isLikePriceAreaWithAStrategy(userPriceAreas,sknPriceArea);
}
}
}catch (Exception e){
RECALL_NEW_LOGGER.error(e.getMessage(),e);
return false;
}
}
private boolean isLikePriceAreaWithAStrategy(List<Integer> userPriceAreas,Integer sknPriceArea){
... ...