Patcher.Rules.CompilerException.CompilerException C# (CSharp) Method

CompilerException() public method

public CompilerException ( string message, CompilerErrorCollection errors ) : System
message string
errors System.CodeDom.Compiler.CompilerErrorCollection
return System
        public CompilerException(string message, CompilerErrorCollection errors)
            : base(message)
        {
            Errors = errors;
        }
CompilerException