public boolean preencherObjeto() throws Exception {
**obj.setDisciplinaprof(combDisciplina.getSelectedItem());** Aqui está dando erro
return true;
}
Tente fazer assim:
obj.setDisciplinaprof(combDisciplina.getModel().getSelectedItem());
Ou
obj.setDisciplinaprof((SeuModel) combDisciplina.getSelectedItem());