class Yacli::InvalidExitCodeError
Public Class Methods
new(cmd_return)
click to toggle source
# File lib/yacli/errors.rb, line 17 def initialize(cmd_return) @cmd_return = cmd_return.inspect end
Public Instance Methods
to_s()
click to toggle source
# File lib/yacli/errors.rb, line 21 def to_s "Command output #{@cmd_return}" end