class Macros4Cuke::DirectoryNotFound

Public Class Methods

new(aDirPath) click to toggle source
Calls superclass method Macros4Cuke::CmdLineError::new
# File lib/macros4cuke/exceptions.rb, line 21
def initialize(aDirPath)
  msg = "Cannot find the directory '#{aDirPath}'."
  super(msg)
end