What is the most important reason to call `super` in the fallback branch of a `method_missing` definition?def method_missing(name, *args) if name.to_s.start_with?("get_") # ... handle else super end end