Exception: InvalidResponseError
- Inherits:
-
StandardError
- Object
- StandardError
- InvalidResponseError
- Defined in:
- lib/gitlab/qa/support/invalid_response_error.rb
Instance Attribute Summary collapse
-
#response ⇒ Object
readonly
Returns the value of attribute response.
Instance Method Summary collapse
-
#initialize(address, response) ⇒ InvalidResponseError
constructor
A new instance of InvalidResponseError.
Constructor Details
#initialize(address, response) ⇒ InvalidResponseError
Returns a new instance of InvalidResponseError.
4 5 6 7 8 |
# File 'lib/gitlab/qa/support/invalid_response_error.rb', line 4 def initialize(address, response) @response = response super "Invalid response received from #{address}" end |
Instance Attribute Details
#response ⇒ Object (readonly)
Returns the value of attribute response.
2 3 4 |
# File 'lib/gitlab/qa/support/invalid_response_error.rb', line 2 def response @response end |