class Garage::AuthBackendError

Attributes

response[R]

Public Class Methods

new(response) click to toggle source
Calls superclass method
# File lib/garage/exceptions.rb, line 43
def initialize(response)
  @status = :internal_server_error
  @response = response
  super("Auth backend responded error: status=#{response.status_code}")
end