예외처리

This commit is contained in:
cho
2026-02-27 13:48:46 +09:00
parent f1d5b0e4ca
commit 3d6fe754da
@@ -1014,7 +1014,11 @@ public class MonitorVO implements Serializable
**/
synchronized private void countM02(String logSeq, long msgPssTm, long msgRcvTm, int iErrorCode){
if(iErrorCode == 0){
long psstmp = Long.parseLong((this.pssCnt.get(logSeq).toString()));
Object o = this.pssCnt.get(logSeq);
long psstmp = 0;
if( o != null ) {
psstmp = Long.parseLong((this.pssCnt.get(logSeq).toString()));
}
long psstmpIn = Long.parseLong((this.pssCntInPeriod.get(logSeq).toString()));
psstmp++;
psstmpIn++;