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

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