Exception: I18n::InvalidLocale
- Inherits:
-
ArgumentError
- Object
- ArgumentError
- ArgumentError
- I18n::InvalidLocale
- Defined in:
- lib/i18n/exceptions.rb
Instance Attribute Summary collapse
-
#locale ⇒ Object
readonly
Returns the value of attribute locale.
Instance Method Summary collapse
-
#initialize(locale) ⇒ InvalidLocale
constructor
A new instance of InvalidLocale.
Constructor Details
#initialize(locale) ⇒ InvalidLocale
Returns a new instance of InvalidLocale.
12 13 14 15 |
# File 'lib/i18n/exceptions.rb', line 12 def initialize(locale) @locale = locale super "#{locale.inspect} is not a valid locale" end |
Instance Attribute Details
#locale ⇒ Object (readonly)
Returns the value of attribute locale.
11 12 13 |
# File 'lib/i18n/exceptions.rb', line 11 def locale @locale end |