Exception: FirebaseTokenAuth::HttpError

Inherits:
APIError
  • Object
show all
Defined in:
lib/firebase_token_auth/exceptions.rb

Direct Known Subclasses

ClientError, ServerError

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, response) ⇒ HttpError

Returns a new instance of HttpError.



8
9
10
11
# File 'lib/firebase_token_auth/exceptions.rb', line 8

def initialize(message, response)
  super(message)
  @response = response
end

Instance Attribute Details

#responseObject (readonly)

Returns the value of attribute response.



6
7
8
# File 'lib/firebase_token_auth/exceptions.rb', line 6

def response
  @response
end