# File lib/aws/core/client.rb, line 323
      def retryable_error? response
        expired_credentials?(response) or
        response.network_error? or
        throttled?(response) or
        redirected?(response) or
        response.error.kind_of?(Errors::ServerError)
      end