Boo.Lang.Compiler.CompilerErrorFactory.CustomError C# (CSharp) Method

CustomError() public static method

public static CustomError ( string msg ) : CompilerError
msg string
return CompilerError
        public static CompilerError CustomError(string msg)
        {
            return new CompilerError(msg);
        }

Same methods

CompilerErrorFactory::CustomError ( LexicalInfo lexicalInfo, string msg ) : CompilerError
CompilerErrorFactory::CustomError ( Node anchor, string msg ) : CompilerError
CompilerErrorFactory