Exception: I18n::InvalidPluralizationData

Inherits:
ArgumentError
  • Object
show all
Defined in:
lib/i18n/exceptions.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(entry, count, key) ⇒ InvalidPluralizationData

Returns a new instance of InvalidPluralizationData.



68
69
70
71
# File 'lib/i18n/exceptions.rb', line 68

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

Instance Attribute Details

#countObject (readonly)

Returns the value of attribute count.



67
68
69
# File 'lib/i18n/exceptions.rb', line 67

def count
  @count
end

#entryObject (readonly)

Returns the value of attribute entry.



67
68
69
# File 'lib/i18n/exceptions.rb', line 67

def entry
  @entry
end

#keyObject (readonly)

Returns the value of attribute key.



67
68
69
# File 'lib/i18n/exceptions.rb', line 67

def key
  @key
end