aboutsummaryrefslogtreecommitdiff
path: root/src/xmlexception.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/xmlexception.h')
-rw-r--r--src/xmlexception.h21
1 files changed, 4 insertions, 17 deletions
diff --git a/src/xmlexception.h b/src/xmlexception.h
index 9437ba3..5cbeda7 100644
--- a/src/xmlexception.h
+++ b/src/xmlexception.h
@@ -5,30 +5,17 @@
5#include "exception.h" 5#include "exception.h"
6#include <stdarg.h> 6#include <stdarg.h>
7 7
8/** 8subExceptionDecl( XmlException )
9 * A generalized Exception base class. This is nice for making general and 9
10 * flexible child classes that can create new error code classes. 10/*
11 */
12class XmlException : public Exception 11class XmlException : public Exception
13{ 12{
14public: 13public:
15 /**
16 * Construct an exception with an error code of zero, but with a
17 * description. The use of this is not reccomended most of the time, it's
18 * generally best to include an error code with the exception so your
19 * program can handle the exception in a better way.
20 * @param sFormat The format of the text. See printf for more info.
21 */
22 XmlException( const char *sFormat, ... ) throw(); 14 XmlException( const char *sFormat, ... ) throw();
23 15
24 /**
25 *
26 * @param nCode
27 * @param sFormat
28 */
29 XmlException( int nCode, const char *sFormat, ... ) throw(); 16 XmlException( int nCode, const char *sFormat, ... ) throw();
30 17
31 XmlException( int nCode=0 ) throw(); 18 XmlException( int nCode=0 ) throw();
32}; 19};*/
33 20
34#endif 21#endif