use of easytests.core.services.exceptions.DeleteUnidentifiedModelException in project easy-tests by malinink.
the class QuizzesService method delete.
@Override
public void delete(QuizModelInterface quizModel) {
final QuizEntity quizEntity = this.map(quizModel);
if (quizEntity.getId() == null) {
throw new DeleteUnidentifiedModelException();
}
this.quizzesMapper.delete(quizEntity);
}
Aggregations