lib/github_api/error/service_unavailable.rb



# encoding: utf-8

module Github #:nodoc
  # Raised when Github returns the HTTP status code 503
  module Error
    class ServiceUnavailable < ServiceError
      http_status_code 503

      def initialize(response)
        super(response)
      end

    end # ServiceUnavailable
  end # Error
end # Github