/
githubmirror
/
aspnetcore
Обзор
Документация
Войти
/
githubmirror
/
aspnetcore
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/Shared/runtime/Http2/Hpack/HPackEncodingException.cs
22 строки
555 B
github-actions[bot]
Sync shared code from runtime (#23796)
09 июл 2020, 18:24
Не верифицирован
09 июл 2020, 18:24
eac4925
Код
Авторство
О чём код?
// 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) { } } }