in JetBrains.AppStore.NotaryApi/Extensions.cs [9:14]
public static async Task<Exception> WithDataAsync(this Exception exception, HttpResponseMessage resp)
{
exception.Data.Add(nameof(resp), resp.ToString());
exception.Data.Add(nameof(resp.Content), await resp.Content.ReadAsStringAsync().ConfigureAwait(false));
return exception;
}