1 #ifndef SYSTEM_ALREADY_RUNNING_EXCEPTION_H
2 #define SYSTEM_ALREADY_RUNNING_EXCEPTION_H
9 std::string system_name;
12 this->system_name = system_name;
15 virtual const char*
what()
const throw() {
16 return (this->system_name + std::string(
" is already running!")).c_str();
Definition: system_already_running_exception.h:7
SystemAlreadyRunningException(std::string system_name)
Definition: system_already_running_exception.h:11
virtual const char * what() const
Definition: system_already_running_exception.h:15