Skip to content

Instantly share code, notes, and snippets.

@thequbit
Created April 20, 2015 14:18
Show Gist options
  • Save thequbit/d2915c0744207d890718 to your computer and use it in GitHub Desktop.
Save thequbit/d2915c0744207d890718 to your computer and use it in GitHub Desktop.
try
{
string json = r.ReadToEnd();
backplaneConfiguration = JsonConvert.DeserializeObject<BackplaneConfiguration>(json);
}
catch (JsonSerializationException jex)
{
// specificly JsonSerializationException
}
catch (Exception ex)
{
// all the other stuff
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment