Exception: NemID::Errors::SRVError

Inherits:
ResponseError show all
Defined in:
lib/nemid/errors/srv.rb

Instance Attribute Summary

Attributes inherited from ResponseError

#da, #en

Instance Method Summary collapse

Constructor Details

#initialize(msg = '') ⇒ SRVError

Returns a new instance of SRVError.



4
5
6
7
8
9
10
# File 'lib/nemid/errors/srv.rb', line 4

def initialize(msg='')
  @da = "Der er opstået en teknisk fejl. Forsøg igen. " \
  "Kontakt support, hvis problemet fortsætter."
  @en = "A technical error has occurred. Please try again. " \
  "Contact support if the problem persists. "
  super(msg)
end