class CircleCIReporter::RequestError

Attributes

resp[R]

Public Class Methods

new(message, resp) click to toggle source

@param message [String] @param resp [Faraday::Response]

Calls superclass method
# File lib/circleci_reporter/errors.rb, line 11
def initialize(message, resp)
  @message = message
  @resp = resp
  super(message)
end