Add master try / catch to content review reports job
Description
The TurnitinReviewServiceImpl.checkForReportsBulk() loops over the content review items to retrieve originality report scores, etc.
The loop does not have a master try / catch. Exceptions are handled fairly well within the loop, but we should add a try / catch(Exception e) for the entire body of the loop (Ie. an unexpected failure while processing one item should not prevent the processing of all subsequent items)
The TurnitinReviewServiceImpl.checkForReportsBulk() loops over the content review items to retrieve originality report scores, etc.
The loop does not have a master try / catch. Exceptions are handled fairly well within the loop, but we should add a try / catch(Exception e) for the entire body of the loop (Ie. an unexpected failure while processing one item should not prevent the processing of all subsequent items)