How to not stop for errors

I’m getting the red (exception) text during procedural imports, in this case because the Servoy email validator does not like some of the information coming in for those fields. It stops the import.

There may also be other things that cause objections, in different import files.

How can I turn the whole system off so that the import continues anyway? Do I need to put try() in all the loops?

Thank you,
Don

Use a try-catch to get the exception. Be sure to evaluate which exception could require the method to stop.

Thank you, Nicola. - Don