args()
public
Return the arguments passed in as the third parameter to the constructor.
Show source
/*
* call-seq:
* no_method_error.args => obj
*
* Return the arguments passed in as the third parameter to
* the constructor.
*/
static VALUE
nometh_err_args(self)
VALUE self;
{
return rb_attr_get(self, rb_intern("args"));
}