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