12 class Error :
public std::exception {
14 Error(
const std::string &msg) : msg(msg) {}
15 virtual const char *
what() const noexcept;
17 const std::
string msg;
Base class for tipc errors.
Definition: Error.h:12
virtual const char * what() const noexcept
Construct error with message.
Definition: Error.cpp:3
Error(const std::string &msg)
Definition: Error.h:14