Home
last modified time | relevance | path

Searched refs:OurCppRunException (Results 1 – 1 of 1) sorted by relevance

/minix/external/bsd/llvm/dist/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp1567 class OurCppRunException : public std::runtime_error { class
1569 OurCppRunException(const std::string reason) : in OurCppRunException() function in __anonbb0623ba0311::OurCppRunException
1572 OurCppRunException (const OurCppRunException &toCopy) : in OurCppRunException() function in __anonbb0623ba0311::OurCppRunException
1575 OurCppRunException &operator = (const OurCppRunException &toCopy) { in operator =()
1576 return(reinterpret_cast<OurCppRunException&>( in operator =()
1580 virtual ~OurCppRunException (void) throw () {} in ~OurCppRunException()
1589 throw(OurCppRunException("thrown by throwCppException(...)")); in throwCppException()
1617 catch (OurCppRunException exc) { in runExceptionThrow()