aboutsummaryrefslogtreecommitdiffstats
path: root/libmproxy/contrib/wbxml/ASCommandResponse.py
diff options
context:
space:
mode:
Diffstat (limited to 'libmproxy/contrib/wbxml/ASCommandResponse.py')
-rw-r--r--libmproxy/contrib/wbxml/ASCommandResponse.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/libmproxy/contrib/wbxml/ASCommandResponse.py b/libmproxy/contrib/wbxml/ASCommandResponse.py
index 7bd31409..08d03445 100644
--- a/libmproxy/contrib/wbxml/ASCommandResponse.py
+++ b/libmproxy/contrib/wbxml/ASCommandResponse.py
@@ -38,10 +38,10 @@ class ASCommandResponse:
if ( len(response) > 0):
self.xmlString = self.decodeWBXML(self.wbxmlBody)
else:
- logging.error("Empty WBXML body passed")
+ raise ValueError("Empty WBXML body passed")
except Exception as e:
- logging.error("Error: {0}".format(e.message))
self.xmlString = None
+ raise ValueError("Error: {0}".format(e.message))
def getWBXMLBytes(self):
return self.wbxmlBytes
@@ -70,4 +70,3 @@ if __name__ == "__main__":
logging.info("-"*100)
instance = ASCommandResponse(byteWBXML)
logging.info(instance.xmlString)
- \ No newline at end of file