blob: 32fcf7890cf7caf4d55650a0eda3e309d22b1b4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# frozen_string_literal: true
module Xml
module Kit
class DecryptionError < StandardError
attr_reader :private_keys
def initialize(private_keys)
@private_keys = private_keys
super('Cannot decrypt document with the provided private keys')
end
end
end
end
|