# File lib/aws/dynamo_db/client.rb, line 78
      def retryable_error? response
        case response.error
        when Errors::ProvisionedThroughputExceededException
          config.dynamo_db_retry_throughput_errors?
        when Errors::CRC32CheckFailed
          true
        else
          super
        end
      end