class Steam::UnavailableError

Error returning the requested object from the Steam API

Public Class Methods

new(error = 'The server is temporarily unable to service \ your request. Please try again later.') click to toggle source
Calls superclass method
# 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