Exception: NemID::Errors::SRVError
- Inherits:
-
ResponseError
- Object
- StandardError
- ResponseError
- NemID::Errors::SRVError
- Defined in:
- lib/nemid/errors/srv.rb
Direct Known Subclasses
SRV001Error, SRV002Error, SRV003Error, SRV004Error, SRV005Error, SRV006Error, SRV007Error, SRV008Error, SRV010Error, SRV011Error
Instance Attribute Summary
Attributes inherited from ResponseError
Instance Method Summary collapse
-
#initialize(msg = '') ⇒ SRVError
constructor
A new instance of SRVError.
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 |