1This test is meant to test the most basic level of exception support 2even if you are not using a regular C++ STL. No <stdexcept> required. 3 4Normally, the only thing needed is adding -fexceptions to your LOCAL_CFLAGS 5and that's it. Alternatively, use it in APP_CFLAGS to add the flag to all your 6modules at the same time. 7 8This is really a way to check that the C++ compiler properly links against 9libsupc++.a without any kind of conflict, and that the try / throw / catch 10features do really work. 11 12