include/relpipe/reader/RelpipeReaderException.h
author František Kučera <franta-hg@frantovo.cz>
Sun, 09 Sep 2018 21:01:17 +0200
branchv_0
changeset 22 e81019af67dc
parent 10 7fe3975f7e4b
child 29 755978b0935c
permissions -rw-r--r--
use AttributeMetadata instead of std::pair for relation header

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

};

}
}