Exception: Fox::FoxfileNotFound

Inherits:
FoxError
  • Object
show all
Defined in:
lib/fox/error/errors.rb

Instance Method Summary collapse

Methods inherited from FoxError

status_code

Constructor Details

#initialize(filepath) ⇒ FoxfileNotFound

Returns a new instance of FoxfileNotFound.

Parameters:

  • filepath (#to_s)

    the path where a Foxfile was not found



31
32
33
# File 'lib/fox/error/errors.rb', line 31

def initialize(filepath)
  @filepath = File.dirname(File.expand_path(filepath)) rescue filepath
end

Instance Method Details

#to_sObject



35
36
37
# File 'lib/fox/error/errors.rb', line 35

def to_s
  "No Foxfile or Foxfile.lock found at '#{@filepath}'!"
end