/*! * * @file configData.h * @author RUBINI Thomas * @date January 2022 * @version 1.0 * @brief Configuration file data storage * */ #ifndef GUARD_ERRORS_H #define GUARD_ERRORS_H #include #include using namespace std; // We keep the same case class config_error : public runtime_error { public: explicit config_error(const string& msg); }; #endif