Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/llvm/examples/ExceptionDemo/
H A DExceptionDemo.cpp1513 class OurCppRunException : public std::runtime_error { class
1515 OurCppRunException(const std::string reason) : in OurCppRunException() function in __anon0fdbc6da0211::OurCppRunException
1518 OurCppRunException (const OurCppRunException &toCopy) : in OurCppRunException() function in __anon0fdbc6da0211::OurCppRunException
1521 OurCppRunException &operator = (const OurCppRunException &toCopy) { in operator =()
1522 return(reinterpret_cast<OurCppRunException&>( in operator =()
1526 ~OurCppRunException(void) throw() override {} in ~OurCppRunException()
1535 throw(OurCppRunException("thrown by throwCppException(...)")); in throwCppException()
1563 catch (OurCppRunException exc) { in runExceptionThrow()