private void _validate(String title, String description, List choices)
throws PortalException {
if (Validator.isNull(title)) {
throw new QuestionTitleException();
}
else if (Validator.isNull(description)) {
throw new QuestionDescriptionException();
}