class Safrano::Filter::Parser::ErrorInvalidArity

Invalid function arity

Public Class Methods

new(tok, typ, cur) click to toggle source
Calls superclass method Safrano::Filter::Parser::Error::new
# File lib/odata/filter/error.rb, line 71
def initialize(tok, typ, cur)
  super
  @msg = "Bad Request: wrong number of parameters for function #{cur.parent.value.to_s} in $filter"
end