source: trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/guimodel/GUIModelConfigurationException.java @ 922

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