Sha256: 8f3d1a5c45797941ed3c05916aae6fac7d3c33b61e33787358725223f5e8506e
Contents?: true
Size: 330 Bytes
Versions: 92
Compression:
Stored size: 330 Bytes
Contents
# frozen_string_literal: true 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
Version data entries
92 entries across 92 versions & 1 rubygems