File: ErrorUtilities.cs | Web Access |
Project: src\src\Servers\Kestrel\perf\Microbenchmarks\Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks.csproj (Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System; namespace Microsoft.AspNetCore.Server.Kestrel.Microbenchmarks; public static class ErrorUtilities { public static void ThrowInvalidRequestLine() { throw new InvalidOperationException("Invalid request line"); } public static void ThrowInvalidRequestHeaders() { throw new InvalidOperationException("Invalid request headers"); } } |