/
githubmirror
/
roslyn
Обзор
Документация
Войти
/
githubmirror
/
roslyn
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
src/LanguageServer/Microsoft.CommonLanguageServerProtocol.Framework/ServerNotShutDownException.cs
22 строки
758 B
David Barbet
Remove error reporting out of clasp and rely on host to report errors
18 фев 2026, 00:22
18 фев 2026, 00:22
3b1f7e0
Код
Авторство
О чём код?
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. // See the LICENSE file in the project root for more information. // This is consumed as 'generated' code in a source package and therefore requires an explicit nullable enable #nullable enable using System; namespace Microsoft.CommonLanguageServerProtocol.Framework; /// <summary> /// Thrown when an operation requires the language server to have been asked to shut down, /// but shutdown has not yet been initiated or completed. /// </summary> internal sealed class ServerNotShutDownException : InvalidOperationException { public ServerNotShutDownException(string message) : base(message) { } }