Searched refs:test_exception (Results 1 – 2 of 2) sorted by relevance
100 class test_exception : public std::exception {103 test_exception ( const char* description ) : my_description(description) {} in test_exception() function108 class solitary_test_exception : public test_exception {110 solitary_test_exception ( const char* description ) : test_exception(description) {} in solitary_test_exception()113 using PropagatedException = test_exception;122 throw test_exception(EXCEPTION_DESCR); in ThrowTestException()142 throw test_exception(EXCEPTION_DESCR); in ThrowTestException()182 …(e), (g_SolitaryException ? typeid(solitary_test_exception) : typeid(test_exception)).name() ) == …
394 class test_exception : public std::exception class398 test_exception ( const char* descr ) : m_strDescription(descr) {} in test_exception() function in test_exception403 using TestException = test_exception;429 TBB_TEST_THROW(test_exception(EXCEPTION_DESCR1)); in operator ()()476 throw test_exception(EXCEPTION_DESCR2); in LaunchChildrenWithFunctor()