class Aws::S3::EncryptionV2::Errors::CEKAlgMismatchError

Public Class Methods

new(*args) click to toggle source
Calls superclass method
# File lib/aws-sdk-s3/encryptionV2/errors.rb, line 26
def initialize(*args)
  msg = 'The content encryption algorithm used at encryption time ' \
    'does not match the algorithm stored for decryption time. ' \
    'The object may be altered or corrupted.'
  super(msg)
end