aboutsummaryrefslogtreecommitdiff
path: root/src/xmlexception.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2006-07-26 19:16:58 +0000
committerMike Buland <eichlan@xagasoft.com>2006-07-26 19:16:58 +0000
commit579c3ac445043122b0a702bdb2542d9ea404b62e (patch)
treea96017529296f52a357e25de37b8c4cd052bebf5 /src/xmlexception.h
parent9e27762c2b4c1baf5b2aff003fbc56236fd742e6 (diff)
downloadlibbu++-579c3ac445043122b0a702bdb2542d9ea404b62e.tar.gz
libbu++-579c3ac445043122b0a702bdb2542d9ea404b62e.tar.bz2
libbu++-579c3ac445043122b0a702bdb2542d9ea404b62e.tar.xz
libbu++-579c3ac445043122b0a702bdb2542d9ea404b62e.zip
Exceptions have been re-worked, and are easier to use, and don't collide with
system includues anymore.
Diffstat (limited to '')
-rw-r--r--src/xmlexception.h21
1 files changed, 0 insertions, 21 deletions
diff --git a/src/xmlexception.h b/src/xmlexception.h
deleted file mode 100644
index 5cbeda7..0000000
--- a/src/xmlexception.h
+++ /dev/null
@@ -1,21 +0,0 @@
1#ifndef XML_EXCEPTION_H
2#define XML_EXCEPTION_H
3
4#include <string>
5#include "exception.h"
6#include <stdarg.h>
7
8subExceptionDecl( XmlException )
9
10/*
11class XmlException : public Exception
12{
13public:
14 XmlException( const char *sFormat, ... ) throw();
15
16 XmlException( int nCode, const char *sFormat, ... ) throw();
17
18 XmlException( int nCode=0 ) throw();
19};*/
20
21#endif