Files
Velocity/native/src/main/c/jni_util.c
Andrew Steinborn 9daa6c3a64 Prettify JNI stuff.
2019-01-11 14:13:13 -05:00

12 lines
240 B
C

#include <jni.h>
#include "jni_util.h"
void JNICALL
throwException(JNIEnv *env, const char *type, const char *msg)
{
jclass klazz = (*env)->FindClass(env, type);
if (klazz != 0) {
(*env)->ThrowNew(env, klazz, msg);
}
}