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

Last change on this file since 449 was 449, checked in by pharms, 12 years ago

Initial import.

File size: 2.2 KB
Line 
1//-------------------------------------------------------------------------------------------------
2// Module    : $RCSfile: GUIModelConfigurationException.java,v $
3// Version   : $Revision: 0.0 $  $Author: patrick $  $Date: 27.05.2012 $
4// Project   : GUIModel
5// Creation  : 2012 by patrick
6// Copyright : Patrick Harms, 2012
7//-------------------------------------------------------------------------------------------------
8package de.ugoe.cs.quest.eventcore.guimodel;
9
10//-------------------------------------------------------------------------------------------------
11/**
12 * TODO comment
13 *
14 * @version $Revision: $ $Date: 27.05.2012$
15 * @author 2012, last modified by $Author: patrick$
16 */
17//-------------------------------------------------------------------------------------------------
18public class GUIModelConfigurationException extends Exception
19{
20
21  /**  */
22  private static final long serialVersionUID = 1L;
23
24  //-----------------------------------------------------------------------------------------------
25  /**
26   * TODO: comment
27   *
28   */
29  //-----------------------------------------------------------------------------------------------
30  public GUIModelConfigurationException()
31  {
32    super();
33  }
34
35  //-----------------------------------------------------------------------------------------------
36  /**
37   * TODO: comment
38   *
39   * @param message
40   */
41  //-----------------------------------------------------------------------------------------------
42  public GUIModelConfigurationException(String message)
43  {
44    super(message);
45  }
46
47  //-----------------------------------------------------------------------------------------------
48  /**
49   * TODO: comment
50   *
51   * @param cause
52   */
53  //-----------------------------------------------------------------------------------------------
54  public GUIModelConfigurationException(Throwable cause)
55  {
56    super(cause);
57  }
58
59  //-----------------------------------------------------------------------------------------------
60  /**
61   * TODO: comment
62   *
63   * @param message
64   * @param cause
65   */
66  //-----------------------------------------------------------------------------------------------
67  public GUIModelConfigurationException(String message, Throwable cause)
68  {
69    super(message, cause);
70  }
71
72}
Note: See TracBrowser for help on using the repository browser.