class GetText::NoboundTextDomainError

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

Public Class Methods

new(domainname) click to toggle source
# File lib/gettext.rb, line 23
def initialize(domainname)
  @domainname = domainname
end

Public Instance Methods

message() click to toggle source
# File lib/gettext.rb, line 26
def message
  "#{@domainname} is not bound."
end