minor cleanup

This commit is contained in:
UbitUmarov
2022-09-20 21:32:10 +01:00
parent 086fcc7ff7
commit 31fa8b45df
7 changed files with 26 additions and 34 deletions

View File

@@ -1171,10 +1171,10 @@ namespace Nwc.XmlRpc
{
resp = (XmlRpcResponse)_deserializer.Deserialize(inputXml);
}
catch (Exception e)
catch
{
RequestResponse = inputXml;
throw e;
throw;
}
}
}