Exception: I18n::ReservedInterpolationKey

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(key, string) ⇒ ReservedInterpolationKey

Returns a new instance of ReservedInterpolationKey.



110
111
112
113
# File 'lib/i18n/exceptions.rb', line 110

def initialize(key, string)
  @key, @string = key, string
  super "reserved key #{key.inspect} used in #{string.inspect}"
end

Instance Attribute Details

#keyObject (readonly)

Returns the value of attribute key.



109
110
111
# File 'lib/i18n/exceptions.rb', line 109

def key
  @key
end

#stringObject (readonly)

Returns the value of attribute string.



109
110
111
# File 'lib/i18n/exceptions.rb', line 109

def string
  @string
end