lib/aws-sdk-s3/encryption/errors.rb



# frozen_string_literal: true

module Aws
  module S3
    module Encryption
      module Errors

        class DecryptionError < RuntimeError; end

        class EncryptionError < RuntimeError; end

      end
    end
  end
end