aspclassic-core/AspClassic.VBScript/Compiler/VBScriptCompilerException.cs
Jelle Luteijn 484dbfc9d9 progress
2022-05-15 11:19:49 +02:00

21 lines
469 B
C#

using System;
using System.Collections.Generic;
using System.Text;
namespace Dlrsoft.VBScript.Compiler
{
public class VBScriptCompilerException : Exception
{
private IList<VBScriptSyntaxError> _errors;
public VBScriptCompilerException(IList<VBScriptSyntaxError> errors)
{
_errors = errors;
}
public IList<VBScriptSyntaxError> SyntaxErrors
{
get { return _errors; }
}
}
}