mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-21 19:30:03 +02:00
20 lines
450 B
C++
20 lines
450 B
C++
#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;
|