Exception: Steam::UnavailableError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/steam-api/exceptions.rb

Overview

Error returning the requested object from the Steam API

Instance Method Summary collapse

Constructor Details

#initialize(error = 'The server is temporarily unable to service \ your request. Please try again later.') ⇒ UnavailableError

Returns a new instance of UnavailableError.



11
12
13
14
# File 'lib/steam-api/exceptions.rb', line 11

def initialize(error = 'The server is temporarily unable to service \
                        your request. Please try again later.')
  super(error)
end