Exception: Vibe::Error::UnknownValue
- Inherits:
-
ClientError
- Object
- StandardError
- VibeError
- ClientError
- Vibe::Error::UnknownValue
- Defined in:
- lib/vibe/error/unknown_value.rb
Instance Attribute Summary
Attributes inherited from ClientError
#problem, #resolution, #summary
Attributes inherited from VibeError
#response_headers, #response_message
Instance Method Summary collapse
-
#initialize(key, value, permitted) ⇒ UnknownValue
constructor
A new instance of UnknownValue.
Methods inherited from ClientError
Constructor Details
#initialize(key, value, permitted) ⇒ UnknownValue
Returns a new instance of UnknownValue.
5 6 7 8 9 10 11 12 13 |
# File 'lib/vibe/error/unknown_value.rb', line 5 def initialize(key, value, permitted) super( ( :problem => "Wrong value of '#{value}' for the parameter: #{key} provided for this request.", :summary => "Vibe gem checks the request parameters passed to ensure that Vibe api is not hit unnecessairly and fails fast.", :resolution => "Permitted values are: #{permitted}, make sure these are the ones you are using" ) ) end |