include/relpipe/reader/RelpipeReaderException.h
branchv_0
changeset 10 7fe3975f7e4b
parent 8 c87e9c84f7aa
child 29 755978b0935c
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/relpipe/reader/RelpipeReaderException.h	Mon Aug 13 21:30:32 2018 +0200
@@ -0,0 +1,26 @@
+#pragma once
+
+#include <string>
+
+#include "typedefs.h"
+
+namespace relpipe {
+namespace reader {
+
+class RelpipeReaderException {
+private:
+	string_t message;
+public:
+
+	RelpipeReaderException(string_t message) :
+	message(message) {
+	}
+
+	string_t getMessge() {
+		return message;
+	}
+
+};
+
+}
+}
\ No newline at end of file