include/RelpipeWriterException.h
author František Kučera <franta-hg@frantovo.cz>
Sat, 21 Jul 2018 23:01:47 +0200
branchv_0
changeset 12 640e88aedf8f
parent 8 03750aff8619
permissions -rw-r--r--
code for table generation ported from the prototype: RelationalGenerator.h

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

};

}
}