Exception: Mack::Localization::Errors::FormatEngineNotFound

Inherits:
StandardError
  • Object
show all
Defined in:
lib/mack-localization/errors.rb

Overview

Raise this error when the formatter cannot find the engine for the given language

Instance Method Summary collapse

Constructor Details

#initialize(lang) ⇒ FormatEngineNotFound

Returns a new instance of FormatEngineNotFound.



47
48
49
# File 'lib/mack-localization/errors.rb', line 47

def initialize(lang)
  super("Format engine not found for '#{lang}'")
end