setjmp/trycatch
This commit is contained in:
13
c/setjmp/trycatch/_code/try_catch.cpp
Normal file
13
c/setjmp/trycatch/_code/try_catch.cpp
Normal file
@@ -0,0 +1,13 @@
|
||||
#include <exception>
|
||||
#include <stdio.h>
|
||||
|
||||
extern "C" void throwCppException();
|
||||
|
||||
int main() {
|
||||
try {
|
||||
throwCppException();
|
||||
} catch (std::exception& e) {
|
||||
printf("Hi, %s\n", e.what());
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
Reference in New Issue
Block a user