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
19// We keep the same case
20class config_error : public runtime_error {
21public:
22 explicit config_error(const string& msg);
23};
24
25#endif
config_error(const string &msg)
Definition: errors.cpp:3