Exception: Gitlab::QA::Support::InvalidResponseError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/gitlab/qa/support/invalid_response_error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(address, response) ⇒ InvalidResponseError

Returns a new instance of InvalidResponseError.



7
8
9
10
11
# File 'lib/gitlab/qa/support/invalid_response_error.rb', line 7

def initialize(address, response)
  @response = response

  super "Invalid response received from #{address}"
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



5
6
7
# File 'lib/gitlab/qa/support/invalid_response_error.rb', line 5

def response
  @response
end