Exception: Pione::Command::ActionNotFound

Inherits:
CommandException show all
Defined in:
lib/pione/command/command-exception.rb

Instance Method Summary collapse

Constructor Details

#initialize(mod, name) ⇒ ActionNotFound

Returns a new instance of ActionNotFound.



42
43
44
45
# File 'lib/pione/command/command-exception.rb', line 42

def initialize(mod, name)
  @mod = mod
  @name = name
end

Instance Method Details

#messageObject



47
48
49
# File 'lib/pione/command/command-exception.rb', line 47

def message
  "Command action \"%s\" not found in %s." % [@name, @mod]
end