...
In this noncompliant code example, the function neither f()
does not catch nor main()
catch exceptions thrown by throwing_func()
. Because no matching handler can be found for the exception thrown, std::terminate()
is called.
...
...
In this noncompliant code example, the function neither f()
does not catch nor main()
catch exceptions thrown by throwing_func()
. Because no matching handler can be found for the exception thrown, std::terminate()
is called.
...