//
// 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.BatchParser
{
/// This exception is used to report that can come from the Batch Parser inside BatchParserWrapper.
internal sealed class BatchParserWrapperException : Exception
{
///
/// Get description of the BatchParserWrapperException
///
public string Description { get; set; }
}
}