9#ifndef CAMCOM_COMMON_ERRORS_HPP
10#define CAMCOM_COMMON_ERRORS_HPP
19 class Error :
public std::exception {
23 const char*
what() const noexcept
override {
return msg.c_str(); }
const char * what() const noexcept override
Definition errors.hpp:23
std::string msg
Definition errors.hpp:25
Error(const std::string &msg)
Definition errors.hpp:21
Definition adapterBase.cpp:18