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

Last change on this file since 927 was 927, checked in by sherbold, 12 years ago
  • added copyright under the Apache License, Version 2.0
File size: 2.1 KB
Line 
1//   Copyright 2012 Georg-August-Universität Göttingen, Germany
2//
3//   Licensed under the Apache License, Version 2.0 (the "License");
4//   you may not use this file except in compliance with the License.
5//   You may obtain a copy of the License at
6//
7//       http://www.apache.org/licenses/LICENSE-2.0
8//
9//   Unless required by applicable law or agreed to in writing, software
10//   distributed under the License is distributed on an "AS IS" BASIS,
11//   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12//   See the License for the specific language governing permissions and
13//   limitations under the License.
14
15package de.ugoe.cs.autoquest.eventcore.guimodel;
16
17/**
18 * <p>
19 * Exception that is thrown if there is a failure during the creation of a {@link IGUIElement} by
20 * the {@link GUIElementFactory}.
21 * </p>
22 *
23 * @version 1.0
24 * @author Patrick Harms
25 */
26public class GUIModelConfigurationException extends GUIModelException {
27
28    /**
29     * <p>
30     * Id for object serialization.
31     * </p>
32     */
33    private static final long serialVersionUID = 1L;
34
35    /**
36     * <p>
37     * Constructor. Creates a new GUIModelConfigurationException.
38     * </p>
39     */
40    public GUIModelConfigurationException() {
41        super();
42    }
43
44    /**
45     * <p>
46     * Constructor. Creates a new GUIModelConfigurationException.
47     * </p>
48     *
49     * @param message
50     *            message of the exception
51     */
52    public GUIModelConfigurationException(String message) {
53        super(message);
54    }
55
56    /**
57     * <p>
58     * Constructor. Creates a new GUIModelConfigurationException.
59     * </p>
60     *
61     * @param cause
62     *            cause of the exception
63     */
64    public GUIModelConfigurationException(Throwable cause) {
65        super(cause);
66    }
67
68    /**
69     * <p>
70     * Constructor. Creates a new GUIModelConfigurationException.
71     * </p>
72     *
73     * @param message
74     *            message of the exception
75     * @param cause
76     *            cause of the exception
77     */
78    public GUIModelConfigurationException(String message, Throwable cause) {
79        super(message, cause);
80    }
81
82}
Note: See TracBrowser for help on using the repository browser.