View Javadoc

1   package sk.stuba.fiit.foo07.genex.exceptions;
2   
3   public class NotEnoughQuestionsException extends Exception {
4   
5       public NotEnoughQuestionsException() {
6           super(
7                   "Not enough questions selected to satisfy questionCount parameter while generating test.");
8       }
9   
10      public NotEnoughQuestionsException(Throwable arg0) {
11          super(arg0);
12      }
13  
14      public NotEnoughQuestionsException(String arg0) {
15          super(arg0);
16      }
17  }