class MSS::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 MSS::Errors::Base::new
# File lib/mss/s3/errors.rb, line 84
def initialize(msg)
  super("",
        "",
        "IncorrectClientSideEncryptionKey",
        msg)
end