Rhino.ScriptRuntime.NotFoundError C# (CSharp) Method

NotFoundError() public static method

public static NotFoundError ( Scriptable @object, string property ) : Exception
@object Scriptable
property string
return System.Exception
		public static Exception NotFoundError(Scriptable @object, string property)
		{
			// XXX: use object to improve the error message
			string msg = GetMessage1("msg.is.not.defined", property);
			throw ConstructError("ReferenceError", msg);
		}
ScriptRuntime