class Nimbu::Error::InvalidOptions

Public Class Methods

new(invalid, valid) click to toggle source
Calls superclass method Nimbu::Error::ClientError::new
# File lib/nimbu-api/errors/invalid_options.rb, line 7
def initialize(invalid, valid)
  super(
    generate_message(
      :problem => "Invalid option #{invalid.keys.join(', ')} provided for this request.",
      :summary => "Nimbu gem checks the request parameters passed to ensure that Nimbu api is not hit unnecessairly and to fail fast.",
      :resolution => "Valid options are: #{valid.join(', ')}, make sure these are the ones you are using"
    )
  )
end