class AWS::S3::Errors::IncorrectClientSideEncryptionKey

This error is special, because S3 must first retrieve the client

side encryption key in it's encrypted form before finding if the
key is incorrect.

Public Class Methods

new(msg) click to toggle source
Calls superclass method AWS::Errors::Base.new
# File lib/aws/s3/errors.rb, line 85
def initialize(msg)
  super("",
        "",
        "IncorrectClientSideEncryptionKey",
        msg)
end