26 lines
389 B
C++
26 lines
389 B
C++
/*!
|
|
*
|
|
* @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<string>
|
|
#include<stdexcept>
|
|
|
|
using namespace std;
|
|
|
|
// We keep the same case
|
|
class config_error : public runtime_error {
|
|
public:
|
|
explicit config_error(const string& msg);
|
|
};
|
|
|
|
#endif
|