source: trunk/autoquest-core-events/src/main/java/de/ugoe/cs/autoquest/eventcore/EventTargetModelConfigurationException.java @ 2252

Last change on this file since 2252 was 2146, checked in by pharms, 7 years ago
  • refactored GUI model so that hierarchical event target structures can also be used and created by plugins not being strictly for GUIs
  • Property svn:mime-type set to text/plain
File size: 2.2 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;
16
17/**
18 * <p>
19 * Exception that is thrown if there is a failure during the creation of an
20 * {@link IHierarchicalEventTarget} by the {@link IEventTargetFactory}.
21 * </p>
22 *
23 * @version 1.0
24 * @author Patrick Harms
25 */
26public class EventTargetModelConfigurationException extends EventTargetModelException {
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 EventTargetModelConfigurationException.
38     * </p>
39     */
40    public EventTargetModelConfigurationException() {
41        super();
42    }
43
44    /**
45     * <p>
46     * Constructor. Creates a new EventTargetModelConfigurationException.
47     * </p>
48     *
49     * @param message
50     *            message of the exception
51     */
52    public EventTargetModelConfigurationException(String message) {
53        super(message);
54    }
55
56    /**
57     * <p>
58     * Constructor. Creates a new EventTargetModelConfigurationException.
59     * </p>
60     *
61     * @param cause
62     *            cause of the exception
63     */
64    public EventTargetModelConfigurationException(Throwable cause) {
65        super(cause);
66    }
67
68    /**
69     * <p>
70     * Constructor. Creates a new EventTargetModelConfigurationException.
71     * </p>
72     *
73     * @param message
74     *            message of the exception
75     * @param cause
76     *            cause of the exception
77     */
78    public EventTargetModelConfigurationException(String message, Throwable cause) {
79        super(message, cause);
80    }
81
82}
Note: See TracBrowser for help on using the repository browser.