Exception: GetText::NoboundTextDomainError
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- GetText::NoboundTextDomainError
- 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
-
#initialize(domainname) ⇒ NoboundTextDomainError
constructor
A new instance of NoboundTextDomainError.
- #message ⇒ Object
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
#message ⇒ Object
27 28 29 |
# File 'lib/gettext.rb', line 27 def "#{@domainname} is not bound." end |