Searched defs:Exception (Results 1 – 5 of 5) sorted by relevance
8 struct Exception : std::runtime_error { struct9 Exception(const char *msg) : std::runtime_error(msg) {} in Exception() function10 Exception(const std::string &msg) : std::runtime_error(msg) {} in Exception() argument
46 class Exception : public std::runtime_error { class48 Exception(int err, const char* msg) in Exception() function in mapbox::sqlite::Exception51 Exception(ResultCode err, const char* msg) in Exception() function in mapbox::sqlite::Exception54 Exception(int err, const std::string& msg) in Exception() function in mapbox::sqlite::Exception57 Exception(ResultCode err, const std::string& msg) in Exception() function in mapbox::sqlite::Exception
111 class CV_EXPORTS Exception : public std::exception class