Files
sqltoolsservice/src/Microsoft.SqlTools.Hosting.v2/Utility/ServiceProviderNotSetException.cs
Kevin Cunnane d9e8d5ac12 Use netstandard for coreservices DLL (#676)
* Use netstandard for coreservices DLL
- This is possible thanks to recent updates that target SMO bits using netstandard

* Fix localization failure during dotnet pack
- Namespace changes on SRGen, so updated references to accept the name change
2018-08-07 14:49:27 -07:00

17 lines
448 B
C#

//
// Copyright (c) Microsoft. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
//
using System;
using Microsoft.SqlTools.Hosting.v2;
namespace Microsoft.SqlTools.Hosting.Utility
{
public class ServiceProviderNotSetException : InvalidOperationException {
public ServiceProviderNotSetException()
: base(SR.ServiceProviderNotSet) {
}
}
}