Skip if exception occurs in datatable and move on to the next row

The project is based on orchestrator Queue (Re Framework) . But we are reading the DB inside the project and stored in DATATABLE and Process the each row from Data table and enter value of each row In SAP .

We would like to skip if an exception occurred one row and process another row instead of marking the queue transaction as failed?

Note : We kept all the required activities inside For each row

You can try below method

For each row as Datarow in dt_queue.Rows
	Try
		{Your processing code here}
	Catch ex as Exception
		log message = ex.Message
	End try
Next row