mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-06-11 12:27:14 +02:00
in progress with integratign new shm in multi
This commit is contained in:
19
slsDetectorSoftware/commonFiles/sls_detector_exceptions.h
Normal file
19
slsDetectorSoftware/commonFiles/sls_detector_exceptions.h
Normal file
@ -0,0 +1,19 @@
|
||||
#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";};
|
||||
};//shmException;
|
Reference in New Issue
Block a user