Adding service operations for external languages (#918)

* Added service operations for external languages
This commit is contained in:
Leila Lali
2020-02-21 08:52:58 -08:00
committed by GitHub
parent 927b0d73ca
commit 73fc70fbbc
17 changed files with 1440 additions and 219 deletions

View File

@@ -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)
{
}
}
}