Exception: Mack::Localization::Errors::UnsupportedEncoding

Inherits:
StandardError
  • Object
show all
Defined in:
lib/mack-localization/errors.rb

Overview

Raise this error when caller specified an unsupported char encoding. This feature is not currently supported yet.

Instance Method Summary collapse

Constructor Details

#initialize(encoding) ⇒ UnsupportedEncoding

Returns a new instance of UnsupportedEncoding.



20
21
22
# File 'lib/mack-localization/errors.rb', line 20

def initialize(encoding)
  super("Encoding: #{encoding} is not currently supported")
end