Exception: Findable::UnknownSeedDir
- Inherits:
-
FindableError
- Object
- StandardError
- FindableError
- Findable::UnknownSeedDir
- Defined in:
- lib/findable/seed.rb
Instance Method Summary collapse
-
#initialize(path) ⇒ UnknownSeedDir
constructor
A new instance of UnknownSeedDir.
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 |