1
2
3
4
5
6
7
8
9
10
11
12 package sk.uniba.euromath.document;
13 /***
14 * Document exception.
15 * @author Martin Vysny
16 */
17 public class DocumentException extends Exception {
18 /***
19 * uid.
20 */
21 private static final long serialVersionUID = -3800880703108925804L;
22 /***
23 * Constructor.
24 * @param msg
25 */
26 public DocumentException(String msg) {
27 super(msg);
28 }
29 /***
30 * Constructor.
31 * @param message
32 * @param cause
33 */
34 public DocumentException(String message, Throwable cause) {
35 super(message, cause);
36 }
37 /***
38 * Constructor.
39 * @param cause
40 */
41 public DocumentException(Throwable cause) {
42 super(cause);
43 }
44 }