summaryrefslogtreecommitdiff
path: root/error.cpp
blob: 4c737c22131696c98fab1125233a9dc4ebcf0874 (plain)
1
2
3
4
5
6
7
8
9
#include "error.h"


StopCompetitionError::StopCompetitionError()
		: runtime_error("StopCompetitionError") {}
StopCompetitionError::StopCompetitionError(const string &what_arg)
		: runtime_error(what_arg) {}
StopCompetitionError::StopCompetitionError(const char *what_arg)
		: runtime_error(what_arg) {}