summaryrefslogtreecommitdiff
path: root/error.h
blob: 403f81b9c48d2d6a9d35e973492177e58179f9d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#include <stdexcept>
#include <string>

using namespace std;


class StopCompetitionError : public runtime_error {
public:
	StopCompetitionError();
	explicit StopCompetitionError(const string &what_arg);
	explicit StopCompetitionError(const char *what_arg);
};