class AWS::S3::Errors::DecryptionError
Attributes
env_key[R]
original[R]
public_key[R]
Public Class Methods
new(public_key, env_key, original)
click to toggle source
Calls superclass method
# File lib/aws/s3/encryption_errors.rb, line 20 def initialize(public_key, env_key, original) @public_key = public_key @env_key = env_key @original = original super("Could not decrypt envelope key using the given public key") end