class UNotifier::UnknownLocaleKeyError

Attributes

key[R]
locale_key[R]
options[R]

Public Class Methods

new(key, locale_key, options) click to toggle source
Calls superclass method
# File lib/exceptions.rb, line 60
def initialize(key, locale_key, options)
  @key = key
  @locale_key = locale_key
  @options = options
  message = "Unkown locale key '#{@locale_key}' for '#{@key}'. Available options: #{@options}"
  super(message)
end