Resets the detection of non-fatal errors:
// in a loop
FOR EACH ...
// Reset detection of non-fatal errors
ErrorReset()
// Execute the operation
bExecutionOK = AnOperation()
// Process errors
IF bExecutionOK = False THEN
// Write error in a log
LogError(ErrorInfo())
END
END
Business / UI classification: Neutral code