aboutsummaryrefslogtreecommitdiff
path: root/src/exceptions.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/exceptions.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 'src/exceptions.h')
-rw-r--r--src/exceptions.h9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/exceptions.h b/src/exceptions.h
new file mode 100644
index 0000000..1cc891d
--- /dev/null
+++ b/src/exceptions.h
@@ -0,0 +1,9 @@
1#ifndef EXCEPTIONS_H
2#define EXCEPTIONS_H
3
4#include "exceptionbase.h"
5#include <stdarg.h>
6
7subExceptionDecl( XmlException )
8
9#endif