SILUBS.ScriptureChecks.QTokenProcessor.ReportError C# (CSharp) Method

ReportError() private method

Outputs (the text token substring of) the given quotation related token, attaching the given error message to it.
private ReportError ( QToken qrTok, string message ) : void
qrTok QToken The token being processed
message string The error message to be displayed
return void
		private void ReportError(QToken qrTok, string message)
		{
			Output(new TextTokenSubstring(qrTok.Tts, message));
		}