Home
last modified time | relevance | path

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

/external/llvm/examples/ExceptionDemo/
DExceptionDemo.cpp1565 class OurCppRunException : public std::runtime_error { class
1567 OurCppRunException(const std::string reason) : in OurCppRunException() function in __anon76b46b710311::OurCppRunException
1570 OurCppRunException (const OurCppRunException &toCopy) : in OurCppRunException() function in __anon76b46b710311::OurCppRunException
1573 OurCppRunException &operator = (const OurCppRunException &toCopy) { in operator =()
1574 return(reinterpret_cast<OurCppRunException&>( in operator =()
1578 ~OurCppRunException(void) throw() override {} in ~OurCppRunException()
1587 throw(OurCppRunException("thrown by throwCppException(...)")); in throwCppException()
1615 catch (OurCppRunException exc) { in runExceptionThrow()