class UniversalGitClient::Errors::HttpError

Attributes

response[R]

Public Class Methods

new(msg, response) click to toggle source
Calls superclass method
# File lib/universal-git-client/errors.rb, line 6
def initialize(msg, response)
  @response = response
  super(msg)
end