class Gcm::Errors::ServiceUnavailable

Indicates that server is temporarily unavailable (i.e because of timeouts, etc.) Sender must retry later, honoring any Retry-After header included in the response. Application servers must implement exponential back-off

Public Class Methods

new(message) click to toggle source
Calls superclass method
# File lib/gcm_on_rails/gcm_on_rails.rb, line 64
def initialize(message)
  super("Service is currently unavailable. Try again later: '#{message}'")
end