// // Copyright (c) Microsoft. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. // namespace Microsoft.SqlTools.Hosting.Contracts.Internal { /// /// Parameters to be used for reporting hosting-level errors, such as protocol violations /// public class HostingErrorParams { /// /// The message of the error /// public string Message { get; set; } } public class HostingErrorNotification { public static readonly EventType Type = EventType.Create("hosting/error"); } }