mirror of
https://github.com/KitsunePie/AppErrorsTracking.git
synced 2025-09-04 10:15:18 +08:00
7 lines
192 B
C++
7 lines
192 B
C++
#include <jni.h>
|
|
#include <exception>
|
|
|
|
extern "C" JNIEXPORT void JNICALL
|
|
Java_com_fankes_apperrorsdemo_native_Channel_throwNativeException(JNIEnv *env, jobject) {
|
|
throw std::exception();
|
|
} |