if (!supports(target.getClass()))
throw new IllegalArgumentException("Validation of classs '"
+ target.getClass() + "' is not supported");
Media media = (Media) target;
ValidationUtils.rejectIfEmpty(errors, FIELD_TITLE, ERROR_EMPTY);
rejectIfExceedsMaxLength(FIELD_TITLE, TITLE_MAX_LENGTH, errors, media.getTitle());
}