class ManBook::CommandFailedError
Attributes
cmd[R]
msg[R]
Public Class Methods
new(cmd, msg)
click to toggle source
Calls superclass method
ManBook::ConfigurationError::new
# File lib/manbook/errors.rb, line 11 def initialize(cmd, msg) super("Executing #{cmd} failed: #{msg}") @cmd, @msg = cmd, msg end