module AsciiTracker::Exceptions

Public Instance Methods

not_yet_implemented(txt = nil) click to toggle source
# File lib/asciitracker/exceptions.rb, line 17
def not_yet_implemented txt = nil
  txt ||= "#{caller[0]} (caller: #{caller[1]})"
  raise NotYetImplemented, txt
end