lib/gitlab/qa/support/invalid_response_error.rb
module Gitlab module QA module Support class InvalidResponseError < StandardError attr_reader :response def initialize(address, response) @response = response super "Invalid response received from #{address}" end end end end end