quick fix for Journal registration. Removed ValidationException and replaced with log. Should be revisited.
This commit is contained in:
parent
a46e64f5b5
commit
9633710cec
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue