include/relpipe/reader/RelpipeReaderException.h
author František Kučera <franta-hg@frantovo.cz>
Mon, 13 Aug 2018 21:30:32 +0200
branchv_0
changeset 10 7fe3975f7e4b
parent 8 include/RelpipeReaderException.h@c87e9c84f7aa
child 29 755978b0935c
permissions -rw-r--r--
relpipe-lib-reader: move public header files to: include/relpipe/reader/

#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;
	}

};

}
}