Lines Matching defs:Exception
10 * @brief Exception declarations
21 class Exception : public std::runtime_error
24 Exception(const std::string& msg, int in_errno)
30 Exception(const char *msg, int in_errno)
35 virtual ~Exception() throw() {}
46 class Warning : public Exception
49 Warning(const std::string& msg, int in_errno) : Exception(msg, in_errno) {}
50 Warning(const char *msg, int in_errno) : Exception(msg, in_errno) {}
53 class Error : public Exception
56 Error(const std::string& msg, int in_errno) : Exception(msg, in_errno) {}
57 Error(const char *msg, int in_errno) : Exception(msg, in_errno) {}