lib/github_api/error/internal_server_error.rb



# encoding: utf-8

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

      def initialize(response)
        super(response)
      end

    end # InternalServerError
  end # Error
end # Github