Created AppErrorsDemo demo-app

This commit is contained in:
2022-05-10 15:35:44 +08:00
parent 7fcf8b36cf
commit 5217146bdd
40 changed files with 866 additions and 1 deletions

View File

@@ -0,0 +1,7 @@
#include <jni.h>
#include <exception>
extern "C" JNIEXPORT void JNICALL
Java_com_fankes_apperrorsdemo_native_Channel_throwNativeException(JNIEnv *env, jobject) {
throw std::exception();
}