Exception: Mack::Localization::Errors::UnsupportedFeature

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

Overview

Raise this error if the method called is not yet implemented

Instance Method Summary collapse

Constructor Details

#initialize(feature) ⇒ UnsupportedFeature

Returns a new instance of UnsupportedFeature.



29
30
31
# File 'lib/mack-localization/errors.rb', line 29

def initialize(feature)
  super("Feature: #{feature} is currently unsupported")
end