quick fix for Journal registration. Removed ValidationException and replaced with log. Should be revisited.

This commit is contained in:
Konstantinos Spyrou 2022-10-06 10:29:21 +00:00
parent a46e64f5b5
commit 9633710cec
1 changed files with 3 additions and 2 deletions

View File

@ -149,8 +149,9 @@ public class ValidatorServiceImpl implements ValidatorService {
/////////////////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////////////////
// this.getValidationService().submitValidationJob(jobForValidation);
} catch (Exception e) {
throw new ValidatorServiceException(e);
} catch (Exception e) { // FIXME: replaced exception with log
// throw new ValidatorServiceException(e);
LOGGER.error(e);
}
return jobForValidation;