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

NoApropriateConstructorFound() public static method

public static NoApropriateConstructorFound ( Node node, IType typeName, string signature ) : CompilerError
node Node
typeName IType
signature string
return CompilerError
        public static CompilerError NoApropriateConstructorFound(Node node, IType typeName, string signature)
        {
            return Instantiate("BCE0024", node, typeName, signature);
        }
CompilerErrorFactory