Fixup ArgumentOutOfRangeException (#54161)
authorPranav K <prkrishn@hotmail.com>
Mon, 14 Jun 2021 19:44:38 +0000 (12:44 -0700)
committerGitHub <noreply@github.com>
Mon, 14 Jun 2021 19:44:38 +0000 (12:44 -0700)
src/libraries/Common/src/System/Net/Http/aspnetcore/Http2/Hpack/H2StaticTable.Http2.cs

index 71ef901..fdb619a 100644 (file)
@@ -21,7 +21,7 @@ namespace System.Net.Http.HPack
                 400 => 12,
                 404 => 13,
                 500 => 14,
-                _ => throw new ArgumentOutOfRangeException()
+                _ => throw new ArgumentOutOfRangeException(nameof(status))
             };
 
         private static readonly HeaderField[] s_staticDecoderTable = new HeaderField[]