Remove message sent back for XML parse errors.

This commit is contained in:
Karthik Nadig 2018-04-04 21:14:23 -07:00
parent ec1db425b1
commit 0a67e47c3e

View file

@ -998,9 +998,7 @@ class VSCodeMessageProcessor(ipcjson.SocketIO, ipcjson.IpcChannel):
try:
xml = self.parse_xml_response(resp_args)
except SAXParseException as ex:
self.send_error_response(
request,
message=ex.getMessage())
self.send_error_response(request)
return
try:
@ -1140,9 +1138,7 @@ class VSCodeMessageProcessor(ipcjson.SocketIO, ipcjson.IpcChannel):
try:
xml = self.parse_xml_response(resp_args)
except SAXParseException as ex:
self.send_error_response(
request,
message=ex.getMessage())
self.send_error_response(request)
return
try:
@ -1258,9 +1254,7 @@ class VSCodeMessageProcessor(ipcjson.SocketIO, ipcjson.IpcChannel):
try:
xml = self.parse_xml_response(resp_args)
except SAXParseException as ex:
self.send_error_response(
request,
message=ex.getMessage())
self.send_error_response(request)
return
try:
@ -1299,9 +1293,7 @@ class VSCodeMessageProcessor(ipcjson.SocketIO, ipcjson.IpcChannel):
try:
xml = self.parse_xml_response(resp_args)
except SAXParseException as ex:
self.send_error_response(
request,
message=ex.getMessage())
self.send_error_response(request)
return
try: