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.



21
22
23
24
# File 'lib/macros4cuke/exceptions.rb', line 21

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