환불 로직 try catch 추가

This commit is contained in:
wyh 2024-11-05 17:48:06 +09:00
parent 595d927acf
commit b9b902e8e0

View File

@ -485,9 +485,12 @@ public class SchedulerUtil {
List<MjonMsgVO> msgFailList = mjonMsgDataDAO.selectMsgSentFailList();
for(MjonMsgVO vo : msgFailList) {
mjonMsgDataDAO.updateMsgSentFailPayBack(vo);
try {
mjonMsgDataDAO.updateMsgSentFailPayBack(vo);
}catch(Exception ex) {
System.out.println(vo.getUserId()+" : "+ vo.getMsgGroupId() +" : "+ vo.getUserData());
ex.printStackTrace();
}
}
}