Moved sls_detector_exceptions to sls_receiver_exceptions & its consequences

This commit is contained in:
2018-08-08 15:43:29 +02:00
parent f1333c7a90
commit ab7e63c20f
10 changed files with 26 additions and 13 deletions

View File

@ -1,25 +0,0 @@
#pragma once
/************************************************
* @file sls_detector_exceptions.h
* @short exceptions defined
***********************************************/
/**
*@short exceptions defined
*/
#include <iostream>
#include <exception>
using namespace std;
struct SharedMemoryException : public exception {
public:
SharedMemoryException() {}
string GetMessage() const { return "Shared Memory Failed";};
};
struct ThreadpoolException : public exception {
public:
ThreadpoolException() {}
string GetMessage() const { return "Threadpool Failed";};
};