class RitoPlz::API::ServiceUnavailableException

Public Class Methods

new() click to toggle source
Calls superclass method
# File lib/RitoPlz/API/exceptions.rb, line 108
      def initialize
        msg = %{
503 (SERVICE UNAVAILABLE)
This error indicates that Riot's server is unavailable

Common Reason:
  > You live in EUW
  > r/dota launched a mass ddos attack
  > Dyrus tried to use the microwave in the server room
        }

        super(msg)
      end