class Yacli::InvalidContentError

Public Class Methods

new(cmd_return) click to toggle source
# File lib/yacli/errors.rb, line 27
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 31
def to_s
  "Command output #{@cmd_return}"
end