Microsoft.SqlServer.TransactSql.ScriptDom by Microsoft

<PackageReference Include="Microsoft.SqlServer.TransactSql.ScriptDom" Version="161.9109.0" />

.NET API 5,160,480 bytes

 PhaseOneBatchException

This class is a real internal class to parser, therefore it is not in the spec tree. It is used to notify the top level to re-enter the script.
using System; using System.Runtime.Serialization; namespace Microsoft.SqlServer.TransactSql.ScriptDom { [Serializable] internal sealed class PhaseOneBatchException : Exception { public PhaseOneBatchException() { } private PhaseOneBatchException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }