Exception: NemID::Errors::AUTH010Error

Inherits:
AUTHError show all
Defined in:
lib/nemid/errors/auth.rb

Constant Summary

Constants inherited from AUTHError

NemID::Errors::AUTHError::DA_SUPPORT_URL, NemID::Errors::AUTHError::EN_SUPPORT_URL

Instance Attribute Summary

Attributes inherited from ResponseError

#da, #en

Instance Method Summary collapse

Constructor Details

#initialize(msg = "The service provider is advised to perform a reload of " \ "the client so the user can re-authenticate and try again.") ⇒ AUTH010Error

Returns a new instance of AUTH010Error.



98
99
100
101
102
103
104
105
# File 'lib/nemid/errors/auth.rb', line 98

def initialize(msg="The service provider is advised to perform a reload of " \
  "the client so the user can re-authenticate and try again.")
  @da = "Der er opstået en teknisk fejl. Tjek at kun ét NemID login er " \
  "aktivt og forsøg igen."
  @en = "A technical error has occurred. Please try again, and ensure that " \
  "only one NemID login is running."
  super(msg)
end