Skip to content

Commit

Permalink
Fixing a typo in an exception message. (#4643)
Browse files Browse the repository at this point in the history
  • Loading branch information
v-iyamauchi authored Sep 24, 2024
1 parent 3e8271a commit bcb9c67
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ public override void OnActionExecuting(ActionExecutingContext context)

if (!requiredHeaderValueFound)
{
throw new RequestNotValidException($"Missing required header value; header={PreferHeaderName},value={PreferHeaderValueOptional}.");
throw new RequestNotValidException($"Missing required header value; header={PreferHeaderName},value={PreferHeaderValueRequired}.");
}
}
else
Expand Down

0 comments on commit bcb9c67

Please sign in to comment.