Class | ArkanisDevelopment::SimpleLocalization::EntryNotFound |
In: |
lib/errors.rb
|
Parent: | SimpleLocalizationError |
This error is raised if a requested entry could not be found. This error also stores the requested entry and the language for which the entry could not be found.
begin Language.find :en, :nonsens, :void rescue EntryNotFound => e e.requested_entry # => [:nonsens, :void] e.language # => :en end
language | [R] | |
requested_entry | [R] |