View Javadoc

1   package sk.stuba.fiit.foo07.genex.exceptions;
2   
3   /**
4    * @author palo
5    * 
6    * prvy pokus o vynimku (na skritizovanie ;-)
7    * 
8    */
9   
10  public class QuestionInTestException extends Exception {
11  
12      public QuestionInTestException(String description) {
13          super(description);
14          return;
15      }
16  
17      public QuestionInTestException(Exception e) {
18          super("Unable to delete Question which is in a test or something");
19      }
20  }