diff --git a/ShopifySharp/Infrastructure/ShopifyException.cs b/ShopifySharp/Infrastructure/ShopifyException.cs index 6948d3cc..7e4b46a0 100644 --- a/ShopifySharp/Infrastructure/ShopifyException.cs +++ b/ShopifySharp/Infrastructure/ShopifyException.cs @@ -11,21 +11,16 @@ public class ShopifyException : Exception [Obsolete("This property is deprecated and will be removed in a future version of ShopifySharp.")] public HttpResponseMessage HttpResponse { get; } + /// The Http response status code. public HttpStatusCode HttpStatusCode { get; } - /// /// The XRequestId header returned by Shopify. Can be used when working with the Shopify support team to identify the failed request. - /// public string RequestId { get; } - /// - /// List is always initialized to ensure null reference errors won't be thrown when trying to check error messages. - /// + /// A list of error messages returned by Shopify. public IEnumerable Errors { get; } = Enumerable.Empty(); - /// - /// The raw JSON string returned by Shopify. - /// + /// The raw string body returned by Shopify. public string RawBody { get; } public ShopifyException() { }