Exception: Moxml::Signature::MalformedSignatureError

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(message, detail: nil) ⇒ MalformedSignatureError

Returns a new instance of MalformedSignatureError.



91
92
93
94
# File 'lib/moxml/signature/errors.rb', line 91

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

Instance Attribute Details

#detailObject (readonly)

Returns the value of attribute detail.



89
90
91
# File 'lib/moxml/signature/errors.rb', line 89

def detail
  @detail
end