Exception: Rubasteme::NotImplementedYetError

Inherits:
Error
  • Object
show all
Defined in:
lib/rubasteme/error.rb

Overview

Indicates a feature is not implemented in the current release .

Instance Method Summary collapse

Constructor Details

#initialize(feature) ⇒ NotImplementedYetError

Returns a new instance of NotImplementedYetError.



46
47
48
# File 'lib/rubasteme/error.rb', line 46

def initialize(feature)
  super(EMSG[:not_implemented_yet] % feature)
end