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

Last change on this file since 545 was 545, checked in by pharms, 12 years ago
  • first version of event targets for GUI events including the GUI model management and the support for the instantiation of default GUI elements
File size: 1.1 KB
Line 
1// Module    : $RCSfile: GUIModelConfigurationException.java,v $
2// Version   : $Revision: 0.0 $  $Author: patrick $  $Date: 27.05.2012 $
3// Project   : GUIModel
4// Creation  : 2012 by patrick
5// Copyright : Patrick Harms, 2012
6
7package de.ugoe.cs.quest.eventcore.guimodel;
8
9/**
10 * TODO comment
11 *
12 * @version $Revision: $ $Date: 27.05.2012$
13 * @author 2012, last modified by $Author: patrick$
14 */
15public class GUIModelConfigurationException extends GUIModelException {
16
17    /**  */
18    private static final long serialVersionUID = 1L;
19
20    /**
21     * TODO: comment
22     *
23     */
24    public GUIModelConfigurationException() {
25        super();
26    }
27
28    /**
29     * TODO: comment
30     *
31     * @param message
32     */
33    public GUIModelConfigurationException(String message) {
34        super(message);
35    }
36
37    /**
38     * TODO: comment
39     *
40     * @param cause
41     */
42    public GUIModelConfigurationException(Throwable cause) {
43        super(cause);
44    }
45
46    /**
47     * TODO: comment
48     *
49     * @param message
50     * @param cause
51     */
52    public GUIModelConfigurationException(String message, Throwable cause) {
53        super(message, cause);
54    }
55
56}
Note: See TracBrowser for help on using the repository browser.