Exception: GetText::NoboundTextDomainError

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/gettext.rb

Overview

If the text domain isn't bound when calling GetText.textdomain, this error is raised.

Instance Method Summary collapse

Constructor Details

#initialize(domainname) ⇒ NoboundTextDomainError

Returns a new instance of NoboundTextDomainError.



24
25
26
# File 'lib/gettext.rb', line 24

def initialize(domainname)
  @domainname = domainname
end

Instance Method Details

#messageObject



27
28
29
# File 'lib/gettext.rb', line 27

def message
  "#{@domainname} is not bound."
end