summaryrefslogtreecommitdiff
path: root/libxsd/xsd/cxx/exceptions.hxx
diff options
context:
space:
mode:
Diffstat (limited to 'libxsd/xsd/cxx/exceptions.hxx')
-rw-r--r--libxsd/xsd/cxx/exceptions.hxx21
1 files changed, 21 insertions, 0 deletions
diff --git a/libxsd/xsd/cxx/exceptions.hxx b/libxsd/xsd/cxx/exceptions.hxx
new file mode 100644
index 0000000..d6d0ef9
--- /dev/null
+++ b/libxsd/xsd/cxx/exceptions.hxx
@@ -0,0 +1,21 @@
+// file : xsd/cxx/exceptions.hxx
+// author : Boris Kolpackov <boris@codesynthesis.com>
+// copyright : Copyright (c) 2005-2009 Code Synthesis Tools CC
+// license : GNU GPL v2 + exceptions; see accompanying LICENSE file
+
+#ifndef XSD_CXX_EXCEPTIONS_HXX
+#define XSD_CXX_EXCEPTIONS_HXX
+
+#include <exception> // std::exception
+
+namespace xsd
+{
+ namespace cxx
+ {
+ struct exception: std::exception
+ {
+ };
+ }
+}
+
+#endif // XSD_CXX_EXCEPTIONS_HXX