Class | Webgen::CommandNotFoundError |
In: |
lib/webgen/error.rb
|
Parent: | Error |
This error is raised when a needed external command is not found.
cmd | [R] | The command that is missing. |
Create a new CommandNotFoundError using the provided values.
The parameter cmd specifies the command that is missing.
# File lib/webgen/error.rb, line 128 128: def initialize(cmd, class_name = nil, alcn = nil) 129: super("The needed command '#{cmd}' is missing!", class_name, alcn) 130: @cmd = cmd 131: end