Exception: Findable::UnknownSeedDir

Inherits:
FindableError show all
Defined in:
lib/findable/seed.rb

Instance Method Summary collapse

Constructor Details

#initialize(path) ⇒ UnknownSeedDir

Returns a new instance of UnknownSeedDir.



6
7
8
9
10
11
12
# 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