// Check that we didn't run into any problems
if (validationExceptions.size() > 0)
{
// Throw a new ValidationChainException from the causes
throw new ValidatorChainException(validationExceptions);
}
// We're here, so all's good
log.debug("Passed Validation on all configured validators for " + metadata);
}