mirror of
https://github.com/ckaczor/sqltoolsservice.git
synced 2026-01-14 09:59:48 -05:00
* Initial Investigation * Working code with include, connect, on error and tests * Adding some loc strings * Some cleanup and more tests * Some dummy change to trigger build * Adding PR comments * Addressing PR comments
18 lines
484 B
C#
18 lines
484 B
C#
//
|
|
// 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.ServiceLayer.BatchParser
|
|
{
|
|
public class OnErrorSqlCmdCommand : SqlCmdCommand
|
|
{
|
|
internal OnErrorSqlCmdCommand(OnErrorAction action) : base(LexerTokenType.OnError)
|
|
{
|
|
Action = action;
|
|
}
|
|
|
|
public OnErrorAction Action { get; private set; }
|
|
}
|
|
}
|