diff --git a/ShopifySharp/Infrastructure/ShopifyHttpException.cs b/ShopifySharp/Infrastructure/ShopifyHttpException.cs index 4006e033..b6b99f2f 100644 --- a/ShopifySharp/Infrastructure/ShopifyHttpException.cs +++ b/ShopifySharp/Infrastructure/ShopifyHttpException.cs @@ -5,7 +5,6 @@ namespace ShopifySharp.Infrastructure; public class ShopifyHttpException( - string requestInfo, HttpStatusCode statusCode, ICollection errors, string message, @@ -25,5 +24,6 @@ public class ShopifyHttpException( /// The X-Request-Id header returned by Shopify. This can be used when working with the Shopify support team to identify the failed request. public new readonly string? RequestId = requestId; - public readonly string RequestInfo = requestInfo; + /// Extra details about the request, for logging purposes. + public readonly string? RequestInfo = requestInfo; }