Rhino.ScriptRuntime.TypeError C# (CSharp) Method

TypeError() public static method

public static TypeError ( string message ) : EcmaError
message string
return EcmaError
		public static EcmaError TypeError(string message)
		{
			return ConstructError("TypeError", message);
		}
ScriptRuntime