mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-16 09:35:36 -05:00
Adding service operations for external languages (#918)
* Added service operations for external languages
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
//
|
||||
// Copyright (c) Microsoft. All rights reserved.
|
||||
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
|
||||
//
|
||||
|
||||
using System;
|
||||
|
||||
namespace Microsoft.SqlTools.ServiceLayer.LanguageExtensibility
|
||||
{
|
||||
/// <summary>
|
||||
/// Exception raised from machine learning services operations
|
||||
/// </summary>
|
||||
public class LanguageExtensibilityException : Exception
|
||||
{
|
||||
internal LanguageExtensibilityException() : base()
|
||||
{
|
||||
}
|
||||
|
||||
internal LanguageExtensibilityException(string m) : base(m)
|
||||
{
|
||||
}
|
||||
|
||||
internal LanguageExtensibilityException(string m, Exception innerException) : base(m, innerException)
|
||||
{
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user