Exception: GreenMidget::FeatureMethodNotImplemented
- Inherits:
-
StandardError
- Object
- StandardError
- GreenMidget::FeatureMethodNotImplemented
- Defined in:
- lib/green_midget/errors/feature_method_not_implemented.rb
Instance Method Summary collapse
-
#initialize(feature, method_name) ⇒ FeatureMethodNotImplemented
constructor
A new instance of FeatureMethodNotImplemented.
Constructor Details
#initialize(feature, method_name) ⇒ FeatureMethodNotImplemented
Returns a new instance of FeatureMethodNotImplemented.
3 4 5 6 7 8 |
# File 'lib/green_midget/errors/feature_method_not_implemented.rb', line 3 def initialize(feature, method_name) super <<-MSG Method #{method_name.inspect} not found. Either implement it or delete feature #{feature} from your features list. MSG end |