mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
error.c: KeyError docs [ci skip]
* error.c (key_err_receiver, key_err_key): [DOC] documents of KeyError methods. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@61335 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
92bfddff92
commit
373babeaac
1 changed files with 14 additions and 0 deletions
14
error.c
14
error.c
|
@ -1610,6 +1610,13 @@ rb_invalid_str(const char *str, const char *type)
|
||||||
rb_raise(rb_eArgError, "invalid value for %s: %+"PRIsVALUE, type, s);
|
rb_raise(rb_eArgError, "invalid value for %s: %+"PRIsVALUE, type, s);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* call-seq:
|
||||||
|
* key_error.receiver -> object
|
||||||
|
*
|
||||||
|
* Return the receiver associated with this KeyError exception.
|
||||||
|
*/
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
key_err_receiver(VALUE self)
|
key_err_receiver(VALUE self)
|
||||||
{
|
{
|
||||||
|
@ -1620,6 +1627,13 @@ key_err_receiver(VALUE self)
|
||||||
rb_raise(rb_eArgError, "no receiver is available");
|
rb_raise(rb_eArgError, "no receiver is available");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/*
|
||||||
|
* call-seq:
|
||||||
|
* key_error.key -> object
|
||||||
|
*
|
||||||
|
* Return the key caused this KeyError exception.
|
||||||
|
*/
|
||||||
|
|
||||||
static VALUE
|
static VALUE
|
||||||
key_err_key(VALUE self)
|
key_err_key(VALUE self)
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue