Exception: AWS::S3::Errors::IncorrectClientSideEncryptionKey
- Inherits:
-
Errors::Base
- Object
- StandardError
- Errors::Base
- AWS::S3::Errors::IncorrectClientSideEncryptionKey
- Includes:
- Errors::ClientError
- Defined in:
- lib/aws/s3/errors.rb
Overview
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.
Instance Attribute Summary
Attributes inherited from Errors::Base
#code, #http_request, #http_response
Instance Method Summary collapse
-
#initialize(msg) ⇒ IncorrectClientSideEncryptionKey
constructor
A new instance of IncorrectClientSideEncryptionKey.
Constructor Details
#initialize(msg) ⇒ IncorrectClientSideEncryptionKey
Returns a new instance of IncorrectClientSideEncryptionKey.
85 86 87 88 89 90 |
# File 'lib/aws/s3/errors.rb', line 85 def initialize(msg) super("", "", "IncorrectClientSideEncryptionKey", msg) end |