Error.argument Function
Creates an Error object that represents the Sys.ArgumentException exception.
var err = Error.argument(paramName, message);
The argument function lets you communicate that an exception has occurred when a function or method was invoked and when at least one of the passed arguments was invalid. The message parameter lets you optionally specify an error message. The paramName parameter enables you to specify the name of the parameter whose value was null and that caused the exception.
Show: