1 #ifndef TIMEOUTEXCEPTION_H 2 #define TIMEOUTEXCEPTION_H 15 explicit TimeoutException(
const std::string& message,
int timeout) : msg(message), m_timeout(timeout)
18 msg =
"Timeout reached (" + std::to_string(m_timeout) +
")";
25 virtual const char* what()
const throw ()
35 #endif // TIMEOUTEXCEPTION_H