Commit 85e6beaf445fbea23739382df96bc3942f0de236

Authored by Lawrence
1 parent 340a23a9

增加错误捕捉处理

src/main/java/com/genersoft/iot/vmp/gb28181/transmit/response/ISIPResponseProcessor.java
1 1 package com.genersoft.iot.vmp.gb28181.transmit.response;
2 2  
  3 +import java.text.ParseException;
  4 +
3 5 import javax.sip.ResponseEvent;
4 6  
5 7 import com.genersoft.iot.vmp.conf.SipConfig;
... ... @@ -12,6 +14,6 @@ import com.genersoft.iot.vmp.gb28181.SipLayer;
12 14 */
13 15 public interface ISIPResponseProcessor {
14 16  
15   - public void process(ResponseEvent evt, SipLayer layer, SipConfig config);
  17 + public void process(ResponseEvent evt, SipLayer layer, SipConfig config) throws ParseException;
16 18  
17 19 }
... ...