Exception: Resteze::InvalidRequestError
- Defined in:
- lib/resteze/errors.rb
Instance Attribute Summary collapse
-
#param ⇒ Object
Returns the value of attribute param.
Attributes inherited from Error
#code, #http_body, #http_headers, #http_status, #json_body, #message, #response
Instance Method Summary collapse
-
#initialize(message, param, **keyword_args) ⇒ InvalidRequestError
constructor
A new instance of InvalidRequestError.
Methods inherited from Error
Constructor Details
#initialize(message, param, **keyword_args) ⇒ InvalidRequestError
Returns a new instance of InvalidRequestError.
27 28 29 30 |
# File 'lib/resteze/errors.rb', line 27 def initialize(, param, **keyword_args) super(, **keyword_args) @param = param end |
Instance Attribute Details
#param ⇒ Object
Returns the value of attribute param.
25 26 27 |
# File 'lib/resteze/errors.rb', line 25 def param @param end |