Exception: Macros4Cuke::CmdLineError Abstract

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

Overview

This class is abstract.

Specialized command-line errors.

Direct Known Subclasses

DirectoryNotFound, SupportFileExists

Instance Method Summary collapse

Constructor Details

#initialize(aMessage) ⇒ CmdLineError

Returns a new instance of CmdLineError.



14
15
16
17
# File 'lib/macros4cuke/exceptions.rb', line 14

def initialize(aMessage)
  msg = "Error in command-line:\n"
  super(msg + aMessage)
end