Exception: Fox::FoxfileNotFound
- Defined in:
- lib/fox/error/errors.rb
Instance Method Summary collapse
-
#initialize(filepath) ⇒ FoxfileNotFound
constructor
A new instance of FoxfileNotFound.
- #to_s ⇒ Object
Methods inherited from FoxError
Constructor Details
#initialize(filepath) ⇒ FoxfileNotFound
Returns a new instance of FoxfileNotFound.
32 33 34 |
# File 'lib/fox/error/errors.rb', line 32 def initialize(filepath) @filepath = File.dirname(File.(filepath)) rescue filepath end |
Instance Method Details
#to_s ⇒ Object
36 37 38 |
# File 'lib/fox/error/errors.rb', line 36 def to_s "No Foxfile or Foxfile.lock found at '#{@filepath}'!" end |