class UNotifier::EmptyLocaleKeyError

Attributes

key[R]

Public Class Methods

new(key) click to toggle source
Calls superclass method
# File lib/exceptions.rb, line 7
def initialize(key)
  @key = key
  message = ":locale_key parameter is required for fetching '#{key}' locale"
  super(message)
end