Exception: Moxml::Signature::TransformError

Inherits:
Error
  • Object
show all
Defined in:
lib/moxml/signature/errors.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, algorithm: nil) ⇒ TransformError

Returns a new instance of TransformError.



73
74
75
76
# File 'lib/moxml/signature/errors.rb', line 73

def initialize(message, algorithm: nil)
  @algorithm = algorithm
  super(message)
end

Instance Attribute Details

#algorithmObject (readonly)

Returns the value of attribute algorithm.



71
72
73
# File 'lib/moxml/signature/errors.rb', line 71

def algorithm
  @algorithm
end