Rhino.ScriptRuntime.ErrorWithClassName C# (CSharp) Method

ErrorWithClassName() private static method

private static ErrorWithClassName ( string msg, object val ) : Exception
msg string
val object
return System.Exception
		private static Exception ErrorWithClassName(string msg, object val)
		{
			return Context.ReportRuntimeError1(msg, val.GetType().FullName);
		}
ScriptRuntime