#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) {}