OpenKeyWord  Version: 426, Datum:
GUI_Exception.cs
1 #region Header
2 /*
3  ==============================================================================
4  Author:
5  Zoltan Hrabovszki <zh@openkeyword.de>
6 
7  Copyright © 2012, 2013, 2014, 2015 IT-Beratung Hrabovszki
8  www.OpenKeyWord.de
9  ==============================================================================
10 
11  This file is part of OpenKeyWord.
12 
13  OpenKeyWord is free software: you can redistribute it and/or modify
14  it under the terms of the GNU General Public License as published by
15  the Free Software Foundation, either version 3 of the License, or
16  (at your option) any later version.
17 
18  OpenKeyWord is distributed in the hope that it will be useful,
19  but WITHOUT ANY WARRANTY; without even the implied warranty of
20  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21  GNU General Public License for more details.
22 
23  You should have received a copy of the GNU General Public License
24  along with OpenKeyWord. If not, see <http://www.gnu.org/licenses/>.
25 
26  Diese Datei ist Teil von OpenKeyWord.
27 
28  OpenKeyWord ist Freie Software: Sie können es unter den Bedingungen
29  der GNU General Public License, wie von der Free Software Foundation,
30  Version 3 der Lizenz oder (nach Ihrer Wahl) jeder späteren
31  veröffentlichten Version, weiterverbreiten und/oder modifizieren.
32 
33  OpenKeyWord wird in der Hoffnung, dass es nützlich sein wird, aber
34  OHNE JEDE GEWÄHRLEISTUNG, bereitgestellt; sogar ohne die implizite
35  Gewährleistung der MARKTFÄHIGKEIT oder EIGNUNG FÜR EINEN BESTIMMTEN ZWECK.
36  Siehe die GNU General Public License für weitere Details.
37 
38  Sie sollten eine Kopie der GNU General Public License zusammen mit
39  OpenKeyWord erhalten haben. Wenn nicht, siehe <http://www.gnu.org/licenses/>.
40 */
41 #endregion Header
42 
43 namespace OKW
44 {
45  using System;
46 
57  [Serializable]
58  [Obsolete]
59  public class GUIException : SystemException
60  {
61  #region Constructors
62 
73  public GUIException()
74  : base()
75  {
76  }
77 
86  public GUIException(string message)
87  : base(message)
88  {
89  }
90 
99  public GUIException(string format, params object[] args)
100  : base(string.Format(format, args))
101  {
102  }
103 
112  public GUIException(string message, Exception innerException)
113  : base(message, innerException)
114  {
115  }
116 
125  public GUIException(string format, Exception innerException, params object[] args)
126  : base(string.Format(format, args), innerException)
127  {
128  }
129 
130  #endregion Constructors
131  }
132 }
Initialisiert eine neue Instanz der GUIException-Klasse.
GUIException(string format, Exception innerException, params object[] args)
Allgemeine unspezifische Exception. Nicht mehr verwenden und ausbauen!
GUIException(string message)
Allgemeine unspezifische Exception. Nicht mehr verwenden und ausbauen!
GUIException()
Initialisiert eine neue Instanz der GUIException-Klasse mit einer angegebenen Fehlermeldung.
GUIException(string format, params object[] args)
Allgemeine unspezifische Exception. Nicht mehr verwenden und ausbauen!
GUIException(string message, Exception innerException)
Allgemeine unspezifische Exception. Nicht mehr verwenden und ausbauen!
Definition: Core.cs:40