This commit is contained in:
2020-10-19 21:03:19 +00:00
parent 00368c1866
commit 8ec761d436

View File

@@ -181,9 +181,21 @@ namespace GZTW.AyaNova.BLL
ClientNotifyEvent.DeleteItem(n.ID);
}
}
catch
{
}
catch(Exception ex)
{
//case 3829
//crack exception if necessary
while (ex.InnerException != null) ex = ex.InnerException;
//log and then continue
if(string.IsNullOrEmpty(NotifySummary)){
NotifySummary="UNKNOWN MESSAGE";
}
NotifyDeliveryLog.LogSMTPDeliveryMessage("ClientNotify Exception during delivery: Full error is:\r\n" + ex.Message + "\r\nMessage: "+ NotifySummary);
continue;
}
}