include/relpipe/writer/RelpipeWriterException.h
author František Kučera <franta-hg@frantovo.cz>
Mon, 13 Aug 2018 20:30:55 +0200
branchv_0
changeset 20 bef6648e79b1
parent 8 include/RelpipeWriterException.h@03750aff8619
child 29 142bdbba520f
permissions -rw-r--r--
relpipe-lib-writer: move public header files to: include/relpipe/writer/

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

};

}
}