class GetText::NoboundTextDomainError

If the textdomain 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 35
def initialize(domainname)
  @domainname = domainname
end

Public Instance Methods

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