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

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

public static InternalError ( Node node, Exception error ) : CompilerError
node Node
error System.Exception
Результат CompilerError
        public static CompilerError InternalError(Node node, Exception error)
        {
            string message = error != null ? error.Message : string.Empty;
            return InternalError(node, message, error);
        }

Same methods

CompilerErrorFactory::InternalError ( Node node, string message, Exception cause ) : CompilerError
CompilerErrorFactory