Exception: NemID::Errors::APPError
- Inherits:
-
ResponseError
- Object
- StandardError
- ResponseError
- NemID::Errors::APPError
- Defined in:
- lib/nemid/errors/app.rb
Direct Known Subclasses
APP001Error, APP002Error, APP003Error, APP004Error, APP007Error, APP008Error, APP009Error, APP010Error
Instance Attribute Summary
Attributes inherited from ResponseError
Instance Method Summary collapse
-
#initialize(msg = '', sp = 'support') ⇒ APPError
constructor
A new instance of APPError.
Constructor Details
#initialize(msg = '', sp = 'support') ⇒ APPError
Returns a new instance of APPError.
4 5 6 7 8 9 10 |
# File 'lib/nemid/errors/app.rb', line 4 def initialize(msg='', sp='support') @da = "Der er opstået en teknisk fejl. Forsøg igen. Kontakt #{sp}, hvis " \ "problemet fortsætter." @en = "A technical error has occurred. Please try again. Contact #{sp} if " \ "the problem persists" super(msg) end |