source: trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/GUIModelException.java @ 831

Last change on this file since 831 was 831, checked in by sherbold, 12 years ago
  • code documentation and clean-up
File size: 1.3 KB
Line 
1
2package de.ugoe.cs.quest.eventcore.guimodel;
3
4/**
5 * <p>
6 * Exception that is thrown if there are problems with the {@link GUIModel}.
7 * </p>
8 *
9 * @version 1.0
10 * @author Patrick Harms
11 */
12public class GUIModelException extends Exception {
13
14    /**
15     * <p>
16     * Id for object serialization.
17     * </p>
18     */
19    private static final long serialVersionUID = 1L;
20
21    /**
22     * <p>
23     * Constructor. Creates a new GUIModelException.
24     * </p>
25     */
26    public GUIModelException() {
27        super();
28    }
29
30    /**
31     * <p>
32     * Constructor. Creates a new GUIModelException.
33     * </p>
34     *
35     * @param message
36     *            message of the exception
37     */
38    public GUIModelException(String message) {
39        super(message);
40    }
41
42    /**
43     * <p>
44     * Constructor. Creates a new GUIModelException.
45     * </p>
46     *
47     * @param cause
48     *            cause of the exception
49     */
50    public GUIModelException(Throwable cause) {
51        super(cause);
52    }
53
54    /**
55     * <p>
56     * Constructor. Creates a new GUIModelException.
57     * </p>
58     *
59     * @param message
60     *            message of the exception
61     * @param cause
62     *            cause of the exception
63     */
64    public GUIModelException(String message, Throwable cause) {
65        super(message, cause);
66    }
67
68}
Note: See TracBrowser for help on using the repository browser.