Improve wording in AC::ParameterMissing error message

This commit is contained in:
Guillermo Iguaran 2013-11-02 14:39:40 -05:00
parent e474e47bfa
commit e3e7786b0f

@ -17,7 +17,7 @@ class ParameterMissing < KeyError
def initialize(param) # :nodoc: def initialize(param) # :nodoc:
@param = param @param = param
super("param not found: #{param}") super("param is missing or the value is empty: #{param}")
end end
end end