1 /**
2 *
3 */
4 package sk.stuba.fiit.foo07.genex.exceptions;
5
6 /**
7 * @author Radu
8 *
9 */
10 public class PictureInPictureQuestionException extends Exception {
11
12 public PictureInPictureQuestionException() {
13 super(
14 "Unable to delete Picture there is/are Question/s using this Picture");
15 }
16
17 public PictureInPictureQuestionException(Exception e) {
18 super(
19 "Unable to delete Picture there is/are Question/s using this Picture");
20 }
21
22 }