class Findable::UnknownSeedDir

Public Class Methods

new(path) click to toggle source
Calls superclass method
# File lib/findable/seed.rb, line 6
def initialize(path)
  if path
    super("Couldn't find #{path}")
  else
    super("There is no configuration")
  end
end