class Xml::Kit::DecryptionError

Attributes

private_keys[R]

Public Class Methods

new(private_keys) click to toggle source
Calls superclass method
# File lib/xml/kit/decryption_error.rb, line 8
def initialize(private_keys)
  @private_keys = private_keys
  super('Cannot decrypt document with the provided private keys')
end