Exception: NoMethodError
- Defined in:
- error.c
Instance Method Summary collapse
-
#args ⇒ Object
Return the arguments passed in as the third parameter to the constructor.
-
#new(msg, name[, args]) ⇒ Object
constructor
Construct a NoMethodError exception for a method of the given name called with the given arguments.
Methods inherited from NameError
Methods inherited from Exception
#backtrace, #exception, exception, #inspect, #message, #set_backtrace, #to_s, #to_str
Constructor Details
#new(msg, name[, args]) ⇒ Object
Construct a NoMethodError exception for a method of the given name called with the given arguments. The name may be accessed using the #name
method on the resulting object, and the arguments using the #args
method.
687 688 689 |
# File 'error.c', line 687 static VALUE nometh_err_initialize(argc, argv, self) int argc; |
Instance Method Details
#args ⇒ Object
Return the arguments passed in as the third parameter to the constructor.
783 784 785 |
# File 'error.c', line 783 static VALUE nometh_err_args(self) VALUE self; |