summaryrefslogtreecommitdiff
path: root/zenXml/zenxml/error.h
diff options
context:
space:
mode:
Diffstat (limited to 'zenXml/zenxml/error.h')
-rwxr-xr-xzenXml/zenxml/error.h19
1 files changed, 19 insertions, 0 deletions
diff --git a/zenXml/zenxml/error.h b/zenXml/zenxml/error.h
new file mode 100755
index 00000000..b50da44a
--- /dev/null
+++ b/zenXml/zenxml/error.h
@@ -0,0 +1,19 @@
+// *****************************************************************************
+// * This file is part of the FreeFileSync project. It is distributed under *
+// * GNU General Public License: http://www.gnu.org/licenses/gpl-3.0 *
+// * Copyright (C) Zenju (zenju AT freefilesync DOT org) - All Rights Reserved *
+// *****************************************************************************
+
+#ifndef ERROR_H_01873461843302148947321
+#define ERROR_H_01873461843302148947321
+
+namespace zen
+{
+///Exception base class for zen::Xml
+struct XmlError
+{
+ virtual ~XmlError() {}
+};
+}
+
+#endif //ERROR_H_01873461843302148947321
bgstack15