Boo.Lang.Compiler.CompilerError.CompilerError C# (CSharp) Method

CompilerError() public method

public CompilerError ( string code, LexicalInfo lexicalInfo, Exception cause ) : System
code string
lexicalInfo LexicalInfo
cause System.Exception
return System
        public CompilerError(string code, LexicalInfo lexicalInfo, Exception cause, params object[] args)
            : base(ResourceManager.Format(code, args), cause)
        {
            if (null == lexicalInfo)
            {
                throw new ArgumentNullException("lexicalInfo");
            }
            _code = code;
            _lexicalInfo = lexicalInfo;
        }

Same methods

CompilerError::CompilerError ( LexicalInfo data, Exception cause ) : System
CompilerError::CompilerError ( LexicalInfo data, string message ) : System
CompilerError::CompilerError ( LexicalInfo lexicalInfo, string message, Exception cause ) : System
CompilerError::CompilerError ( Node node, string message ) : System
CompilerError::CompilerError ( Node node, string message, Exception cause ) : System
CompilerError::CompilerError ( string message ) : System
CompilerError::CompilerError ( string code, Exception cause ) : System
CompilerError::CompilerError ( string code, LexicalInfo lexicalInfo ) : System
CompilerError::CompilerError ( string code, LexicalInfo lexicalInfo, string message, Exception cause ) : System