class Aruba::CommandMonitor::DefaultLastCommandStopped

def empty?

def empty?
  true
end

def method_missing(*)

def method_missing(*)
  raise NoCommandHasBeenStoppedError, "No last command stopped available"
end

def respond_to_missing?(*)

def respond_to_missing?(*)
  true
end