new socket overload

This commit is contained in:
Erik Frojdh
2019-03-19 17:49:20 +01:00
parent 6759b2eeb8
commit 4e56107015
4 changed files with 183 additions and 171 deletions

View File

@ -42,6 +42,18 @@ public:
};
struct DetectorError : public RuntimeError {
public:
DetectorError(std::string msg):RuntimeError(msg) {}
};
struct ReceiverError : public RuntimeError {
public:
ReceiverError(std::string msg):RuntimeError(msg) {}
};
}