new(*args)
public
Construct a new NameError exception. If given the name parameter may subsequently be
examined using the NameError.name method.
Show source
static VALUE
name_err_initialize(int argc, VALUE *argv, VALUE self)
{
VALUE name;
name = (argc > 1) ? argv[--argc] : Qnil;
rb_call_super(argc, argv);
rb_iv_set(self, "name", name);
return self;
}