SUPER Space invader : Turbo edition DX - VS GOD 1.0.0
A simple space invader ripoff
errors.h
Go to the documentation of this file.
1
11#ifndef GUARD_ERRORS_H
12#define GUARD_ERRORS_H
13
14#include<string>
15#include<stdexcept>
16
17using namespace std;
18
23class config_error : public runtime_error {
24public:
25 explicit config_error(const string& msg);
26};
27
28#endif
Simple clone of runtime_error to help us handle errors in config management.
Definition: errors.h:23
config_error(const string &msg)
Definition: errors.cpp:3