Exception: Macros4Cuke::DirectoryNotFound

Inherits:
CmdLineError show all
Defined in:
lib/macros4cuke/exceptions.rb

Overview

class

Instance Method Summary collapse

Constructor Details

#initialize(aDirPath) ⇒ DirectoryNotFound

Returns a new instance of DirectoryNotFound.



19
20
21
22
# File 'lib/macros4cuke/exceptions.rb', line 19

def initialize(aDirPath)
  msg = "Cannot find the directory '#{aDirPath}'."
  super(msg)
end