include/relpipe/reader/RelpipeReaderException.h
author František Kučera <franta-hg@frantovo.cz>
Sun, 16 Sep 2018 00:42:42 +0200
branchv_0
changeset 26 019edca46769
parent 10 7fe3975f7e4b
child 29 755978b0935c
permissions -rw-r--r--
AttributeMetadata: use smart pointer and avoid memory-leak

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

};

}
}