class I18n::InvalidPluralizationData

Attributes

count[R]
entry[R]
key[R]

Public Class Methods

new(entry, count, key) click to toggle source
Calls superclass method
# File lib/i18n/exceptions.rb, line 67
def initialize(entry, count, key)
  @entry, @count, @key = entry, count, key
  super "translation data #{entry.inspect} can not be used with :count => #{count}. key '#{key}' is missing."
end