include/relpipe/writer/RelpipeWriterException.h
branchv_0
changeset 20 bef6648e79b1
parent 8 03750aff8619
child 29 142bdbba520f
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/relpipe/writer/RelpipeWriterException.h	Mon Aug 13 20:30:55 2018 +0200
@@ -0,0 +1,26 @@
+#pragma once
+
+#include <string>
+
+using namespace std;
+
+namespace relpipe {
+namespace writer {
+
+class RelpipeWriterException {
+private:
+	wstring message;
+public:
+
+	RelpipeWriterException(wstring message) :
+	message(message) {
+	}
+
+	wstring getMessge() {
+		return message;
+	}
+
+};
+
+}
+}
\ No newline at end of file