1 package sk.stuba.fiit.foo07.genex.exceptions;
2
3 public class QuestionPointsExistsException extends Exception {
4
5 public QuestionPointsExistsException() {
6 super("Question already is in Test");
7 }
8
9 public QuestionPointsExistsException(Throwable cause) {
10 super(cause);
11 }
12 }