BFSchema.BfsCompiler.ReportError C# (CSharp) Method

ReportError() public static method

public static ReportError ( BfsSourceRange range, string message ) : void
range BfsSourceRange
message string
return void
        public static void ReportError( BfsSourceRange range, string message )
        {
            gotError = true;
            if (handler != null)
                handler.HandleError(new SourceError(range, "Error: " + message));
        }

Same methods

BfsCompiler::ReportError ( string message ) : void