Form validation handler for poll_view_voting().
function poll_view_voting_validate($form, &$form_state) {
if ($form_state['values']['choice'] == -1) {
form_set_error('choice', t('Your vote could not be recorded because you did not select any of the choices.'));
}
}