class Dependabot::CommandHelpers::ProcessStatus

def to_s

def to_s
  if @custom_exitstatus
    "pid #{pid || 'unknown'}: exit #{@custom_exitstatus} (custom status)"
  else
    @process_status.to_s
  end
end