Lines Matching defs:OurCppRunException
1500 class OurCppRunException : public std::runtime_error {
1502 OurCppRunException(const std::string reason) :
1505 OurCppRunException (const OurCppRunException &toCopy) :
1508 OurCppRunException &operator = (const OurCppRunException &toCopy) {
1509 return(reinterpret_cast<OurCppRunException&>(
1513 ~OurCppRunException(void) throw() override {}
1522 throw(OurCppRunException("thrown by throwCppException(...)"));
1547 catch (OurCppRunException exc) {
1550 "\nrunExceptionThrow(...):In C++ catch OurCppRunException "