1 #ifndef SYSTEM_NOT_INITIALIZED_EXCEPTION_H
2 #define SYSTEM_NOT_INITIALIZED_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(
" hasn't been initialized yet!")).c_str();
virtual const char * what() const
Definition: system_not_initialized_exception.h:15
SystemNotInitializedException(std::string system_name)
Definition: system_not_initialized_exception.h:11
Definition: system_not_initialized_exception.h:7