include/RelpipeWriterException.h
branchv_0
changeset 20 bef6648e79b1
parent 19 98b901d7bb95
child 21 118b68d73420
equal deleted inserted replaced
19:98b901d7bb95 20:bef6648e79b1
     1 #pragma once
       
     2 
       
     3 #include <string>
       
     4 
       
     5 using namespace std;
       
     6 
       
     7 namespace relpipe {
       
     8 namespace writer {
       
     9 
       
    10 class RelpipeWriterException {
       
    11 private:
       
    12 	wstring message;
       
    13 public:
       
    14 
       
    15 	RelpipeWriterException(wstring message) :
       
    16 	message(message) {
       
    17 	}
       
    18 
       
    19 	wstring getMessge() {
       
    20 		return message;
       
    21 	}
       
    22 
       
    23 };
       
    24 
       
    25 }
       
    26 }