Class I18n::MissingInterpolationArgument
In: vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/exceptions.rb
Parent: ArgumentError

Methods

new  

Attributes

key  [R] 
string  [R] 

Public Class methods

[Source]

    # File vendor/rails/activesupport/lib/active_support/vendor/i18n-0.1.3/lib/i18n/exceptions.rb, line 32
32:     def initialize(key, string)
33:       @key, @string = key, string
34:       super "interpolation argument #{key} missing in #{string.inspect}"
35:     end

[Validate]