{
try {
List<ValidatorWarning> warnings = theValidator.checkValidity(theGame);
notifyObservers(new ValidatorSuccessEvent(theValidator.getClass().getSimpleName(), warnings));
} catch (ValidatorException ve) {
notifyObservers(new ValidatorFailureEvent(theValidator.getClass().getSimpleName(), ve));
}
}