Exception: GetText::NoboundTextDomainError

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

Overview

If the textdomain 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.



36
37
38
# File 'lib/gettext.rb', line 36

def initialize(domainname)
  @domainname = domainname
end

Instance Method Details

#messageObject



39
40
41
# File 'lib/gettext.rb', line 39

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