File: src\Shared\runtime\Http2\Hpack\HPackEncodingException.cs | Web Access |
Project: src\src\Servers\Kestrel\samples\http2cat\http2cat.csproj (http2cat) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. namespace System.Net.Http.HPack { internal sealed class HPackEncodingException : Exception { public HPackEncodingException() { } public HPackEncodingException(string message) : base(message) { } public HPackEncodingException(string message, Exception innerException) : base(message, innerException) { } } } |