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) ⇒ InvalidPluralizationData

Returns a new instance of InvalidPluralizationData.



30
31
32
33
# File 'lib/i18n/exceptions.rb', line 30

def initialize(entry, count)
  @entry, @count = entry, count
  super "translation data #{entry.inspect} can not be used with :count => #{count}"
end

Instance Attribute Details

#countObject (readonly)

Returns the value of attribute count.



29
30
31
# File 'lib/i18n/exceptions.rb', line 29

def count
  @count
end

#entryObject (readonly)

Returns the value of attribute entry.



29
30
31
# File 'lib/i18n/exceptions.rb', line 29

def entry
  @entry
end