Exception: I18n::InvalidLocale

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

Instance Attribute Summary (collapse)

Instance Method Summary (collapse)

Constructor Details

- (InvalidLocale) initialize(locale)

A new instance of InvalidLocale



24
25
26
27
# File 'lib/i18n/exceptions.rb', line 24

def initialize(locale)
  @locale = locale
  super "#{locale.inspect} is not a valid locale"
end

Instance Attribute Details

- (Object) locale (readonly)

Returns the value of attribute locale



23
24
25
# File 'lib/i18n/exceptions.rb', line 23

def locale
  @locale
end