We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9b353b4 commit 654db66Copy full SHA for 654db66
1 file changed
concore.hpp
@@ -709,8 +709,11 @@ class Concore{
709
}
710
711
712
- catch(...){
713
- cout<<"skipping +"<<outpath<<port<<" /"<<name;
+ catch (const std::exception &e) {
+ std::cerr << e.what() << std::endl;
714
+ throw;
715
+ } catch (...) {
716
717
718
719
@@ -742,8 +745,11 @@ class Concore{
742
745
743
746
else throw 505;
744
747
748
749
750
751
752
753
754
755
0 commit comments