使用Newtonsoft Json.NET 6.0.8,我有这样的代码:
public bool ValidateSchema<T>(T model, out IList<string> messages)
{
string stringedObject = Newtonsoft.Json.JsonConvert.SerializeObject(model,
new JsonSerializerSettings()
{
ContractResolver = new CamelCasePropertyNamesContractResolver(),
NullValueHandling = NullValueHandling.Include
});
messages = new List<string>();
JObject objectToValidate;
try
{
objectToValidate = JObject.Parse(stringedObject);
}
catch (Exception)
{
messages.Add("Unable to parse jsonObject.");
return false;
}
JsonSchema schema = JsonSchemaRepository.SchemaDictionary[typeof(T)];
return objectToValidate.IsValid(schema, out messages);
}
特别是try catch块。从我的阅读看来,这个方法似乎只抛出我不想捕捉的基本异常,因为它可以隐藏各种其他重要错误。
现在Json.NET nuget包非常专业,所以我不得不怀疑我是否错误地实现了我的解析方法或者我如何处理解析错误的任何其他想法。
或许记录并重新抛出?
TIA
答案 0 :(得分:2)
你可以捕获基础异常,然后重新抛出它,如果它是Exception的子类。
try
{
objectToValidate = JObject.Parse(stringedObject);
}
catch (Exception e)
{
if (e.GetType().IsSubclassOf(typeof(Exception)))
throw;
//Handle the case when e is the base Exception
messages.Add("Unable to parse jsonObject.");
return false;
}