class DTK::ErrorNotImplemented

Public Class Methods

new(msg="NotImplemented error") click to toggle source
Calls superclass method DTK::Error::new
# File lib/errors/errors.rb, line 98
def initialize(msg="NotImplemented error")
  super("in #{this_parent_parent_method}: #{msg}",:NotImplemented)
end