Rhino.Context.ReportRuntimeError4 C# (CSharp) Method

ReportRuntimeError4() static private method

static private ReportRuntimeError4 ( string messageId, object arg1, object arg2, object arg3, object arg4 ) : EvaluatorException
messageId string
arg1 object
arg2 object
arg3 object
arg4 object
return EvaluatorException
		internal static EvaluatorException ReportRuntimeError4(string messageId, object arg1, object arg2, object arg3, object arg4)
		{
			string msg = ScriptRuntime.GetMessage4(messageId, arg1, arg2, arg3, arg4);
			return ReportRuntimeError(msg);
		}
Context