Skip to content

Commit

Permalink
Make ShopifyHttpException.RequestInfo a nullable string
Browse files Browse the repository at this point in the history
  • Loading branch information
nozzlegear committed Apr 17, 2024
1 parent c5db3f1 commit db9b9f3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ShopifySharp/Infrastructure/ShopifyHttpException.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
namespace ShopifySharp.Infrastructure;

public class ShopifyHttpException(
string requestInfo,
HttpStatusCode statusCode,
ICollection<string> errors,
string message,
Expand All @@ -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;
}

0 comments on commit db9b9f3

Please sign in to comment.