# File lib/hammer_cli_import/importtools.rb, line 301
      def handle_missing_and_supress(what, &block)
        block.call
      rescue HammerCLIImport::MissingObjectError => moe
        error moe.message
      rescue => e
        error "Caught #{e.class}:#{e.message} while #{what}"
        info e.backtrace.join "\n"
      end