# File lib/hammer_cli_import/base.rb, line 340
    def find_uniq(arr)
      uniq = nil
      uniq = arr[0] if arr[1].is_a?(Array) &&
        (arr[1][0] =~ /has already been taken/ ||
         arr[1][0] =~ /already exists/ ||
         arr[1][0] =~ /must be unique within one organization/)
      return uniq
    end