lib/github_api/error/validations.rb in github_api-0.9.0 vs lib/github_api/error/validations.rb in github_api-0.9.1
- old
+ new
@@ -6,11 +6,11 @@
class Validations < ClientError
def initialize(errors)
super(
generate_message(
:problem => "Attempted to send request with nil arguments for #{errors.keys.join(', ')}.",
- :summary => 'Each request expects certain number of arguments.',
- :resolution => 'Double check that the provided arguments are set to some value.'
+ :summary => 'Each request expects certain number of required arguments.',
+ :resolution => 'Double check that the provided arguments are set to some value that is neither nil nor empty string.'
)
)
end
end
end # Error