include/RelpipeReaderException.h
branchv_0
changeset 8 c87e9c84f7aa
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/include/RelpipeReaderException.h	Sun Jul 15 00:15:09 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