(no ticket) Propagate exception instead of rethrowing

Client: cpp
Patch: Gaurav Singh

This closes #1999
This commit is contained in:
Gaurav Singh 2020-02-02 20:13:07 -05:00 committed by Jens Geyer
parent baddaa8612
commit 77c4afae16

View File

@ -83,7 +83,7 @@ public:
} catch (SystemResourceException& e) {
std::cout << "\t\t\tfailed to create " << lix* count + tix << " thread " << e.what()
<< std::endl;
throw e;
throw;
}
}
@ -97,7 +97,7 @@ public:
} catch (SystemResourceException& e) {
std::cout << "\t\t\tfailed to start " << lix* count + tix << " thread " << e.what()
<< std::endl;
throw e;
throw;
}
}