SuperSpaceInvaderTurboApoca.../headers/errors.h
2022-01-09 18:30:15 +01:00

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