Rhino.Context.ReportRuntimeError C# (CSharp) Method

ReportRuntimeError() public static method

Report a runtime error using the error reporter for the current thread.
Report a runtime error using the error reporter for the current thread.
public static ReportRuntimeError ( string message ) : EvaluatorException
message string the error message to report
return EvaluatorException
		public static EvaluatorException ReportRuntimeError(string message)
		{
			int[] linep = new int[] { 0 };
			string filename = GetSourcePositionFromStack(linep);
			return Rhino.Context.ReportRuntimeError(message, filename, linep[0], null, 0);
		}

Same methods

Context::ReportRuntimeError ( string message, string sourceName, int lineno, string lineSource, int lineOffset ) : EvaluatorException
Context