1 #ifndef SYSTEM_NOT_RUNNING_EXCEPTION_H
2 #define SYSTEM_NOT_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 not running!")).c_str();
SystemNotRunningException(std::string system_name)
Definition: system_not_running_exception.h:11
Definition: system_not_running_exception.h:7
virtual const char * what() const
Definition: system_not_running_exception.h:15