this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Simple exception test case

+14
+14
tests/src/exception.cpp
··· 1 + #include <iostream> 2 + 3 + int main() 4 + { 5 + try 6 + { 7 + throw 5; 8 + } 9 + catch (int e) 10 + { 11 + std::cout << "Exception: " << e << std::endl; 12 + } 13 + } 14 +