Class Mack::Localization::Errors::UnknownStringKey
In: lib/mack-localization/errors.rb
Parent: StandardError

Raise this error when the user is trying to get a string using an invalid key

Methods

new  

Public Class methods

[Source]

    # File lib/mack-localization/errors.rb, line 38
38:         def initialize(key)
39:           super("Key: #{key} cannot be found in the language files")
40:         end

[Validate]