invalid_arity method similar to method missing ?
- From: didier.prophete@xxxxxxxxx
- Date: 16 Jan 2006 11:39:40 -0800
all,
Is there a function similar to method_missing when an existing method
is called with the wrong number of arguments ?
Suppose I have a class:
class MyClass
def my_func(var1, var2)
end
end
And then I end up calling:
MyClass.new.my_func
As expected, I end up getting an ArgumentError exception ('wrong number
of arguments...). Is there a way to catch these... something like a
'method_missing' (method_missing doesn't get called since the method
exists...)
-Didier
ps: obviously, for simple problems, I could end up using some default
argument values, but it won't work for the (real and more complex)
problem I am trying to solve...
.
- Prev by Date: Re: ruby under cygwin & windows paths
- Next by Date: [newbie] this month, the next month, and the one after that
- Previous by thread: XMLRPC problem. Can anyone help?
- Next by thread: invalid_arity method similar to method missing ?
- Index(es):
Relevant Pages
|