Creates a TclException with the appropiate Tcl error
/// message for having the wring number of arguments to a Tcl command.
///
/// Example:
///
/// if (argv.length != 3) {
/// throw new TclNumArgsException(interp, 1, argv, "option name");
/// }
///
///
///
///