Boo.Lang.Compiler.CompilerErrorFactory.AttributeApplicationError C# (CSharp) Метод

AttributeApplicationError() публичный статический Метод

public static AttributeApplicationError ( Exception error, Ast attribute, Type attributeType ) : CompilerError
error System.Exception
attribute Ast
attributeType System.Type
Результат CompilerError
        public static CompilerError AttributeApplicationError(Exception error, Ast.Attribute attribute, Type attributeType)
        {
            return Instantiate("BCE0009", attribute, error, attributeType, error.Message);
        }
CompilerErrorFactory