예외처리
This commit is contained in:
@@ -1014,7 +1014,11 @@ public class MonitorVO implements Serializable
|
|||||||
**/
|
**/
|
||||||
synchronized private void countM02(String logSeq, long msgPssTm, long msgRcvTm, int iErrorCode){
|
synchronized private void countM02(String logSeq, long msgPssTm, long msgRcvTm, int iErrorCode){
|
||||||
if(iErrorCode == 0){
|
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()));
|
long psstmpIn = Long.parseLong((this.pssCntInPeriod.get(logSeq).toString()));
|
||||||
psstmp++;
|
psstmp++;
|
||||||
psstmpIn++;
|
psstmpIn++;
|
||||||
|
|||||||
Reference in New Issue
Block a user