class NemID::Errors::SRVError

Public Class Methods

new(msg='') click to toggle source
Calls superclass method
# 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