mirror of
https://github.com/slsdetectorgroup/slsDetectorPackage.git
synced 2025-04-25 07:40:03 +02:00
26 lines
1.1 KiB
C++
26 lines
1.1 KiB
C++
// SPDX-License-Identifier: LGPL-3.0-or-other
|
|
// Copyright (C) 2021 Contributors to the SLS Detector Package
|
|
#include "sls/sls_detector_exceptions.h"
|
|
#include "sls/logger.h"
|
|
namespace sls {
|
|
RuntimeError::RuntimeError() : runtime_error("SLS Detector Package Failed") {
|
|
LOG(logERROR) << "SLS Detector Package Failed";
|
|
}
|
|
RuntimeError::RuntimeError(const std::string &msg) : runtime_error(msg) {
|
|
LOG(logERROR) << msg;
|
|
}
|
|
RuntimeError::RuntimeError(const char *msg) : runtime_error(msg) {
|
|
LOG(logERROR) << msg;
|
|
}
|
|
SharedMemoryError::SharedMemoryError(const std::string &msg)
|
|
: RuntimeError(msg) {}
|
|
SocketError::SocketError(const std::string &msg) : RuntimeError(msg) {}
|
|
ZmqSocketError::ZmqSocketError(const std::string &msg) : RuntimeError(msg) {}
|
|
NotImplementedError::NotImplementedError(const std::string &msg)
|
|
: RuntimeError(msg) {}
|
|
DetectorError::DetectorError(const std::string &msg) : RuntimeError(msg) {}
|
|
ReceiverError::ReceiverError(const std::string &msg) : RuntimeError(msg) {}
|
|
GuiError::GuiError(const std::string &msg) : RuntimeError(msg) {}
|
|
|
|
} // namespace sls
|