source: trunk/quest-core-events/src/main/java/de/ugoe/cs/quest/eventcore/guimodel/GUIModelConfigurationException.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.5 KB
Line 
1
2package de.ugoe.cs.quest.eventcore.guimodel;
3
4/**
5 * <p>
6 * Exception that is thrown if there is a failure during the creation of a {@link IGUIElement} by
7 * the {@link GUIElementFactory}.
8 * </p>
9 *
10 * @version 1.0
11 * @author Patrick Harms
12 */
13public class GUIModelConfigurationException extends GUIModelException {
14
15    /**
16     * <p>
17     * Id for object serialization.
18     * </p>
19     */
20    private static final long serialVersionUID = 1L;
21
22    /**
23     * <p>
24     * Constructor. Creates a new GUIModelConfigurationException.
25     * </p>
26     */
27    public GUIModelConfigurationException() {
28        super();
29    }
30
31    /**
32     * <p>
33     * Constructor. Creates a new GUIModelConfigurationException.
34     * </p>
35     *
36     * @param message
37     *            message of the exception
38     */
39    public GUIModelConfigurationException(String message) {
40        super(message);
41    }
42
43    /**
44     * <p>
45     * Constructor. Creates a new GUIModelConfigurationException.
46     * </p>
47     *
48     * @param cause
49     *            cause of the exception
50     */
51    public GUIModelConfigurationException(Throwable cause) {
52        super(cause);
53    }
54
55    /**
56     * <p>
57     * Constructor. Creates a new GUIModelConfigurationException.
58     * </p>
59     *
60     * @param message
61     *            message of the exception
62     * @param cause
63     *            cause of the exception
64     */
65    public GUIModelConfigurationException(String message, Throwable cause) {
66        super(message, cause);
67    }
68
69}
Note: See TracBrowser for help on using the repository browser.