mirror of
https://github.com/autc04/Retro68.git
synced 2024-11-03 07:07:20 +00:00
10 lines
233 B
C
10 lines
233 B
C
|
#include <noclass.h>
|
||
|
|
||
|
JNIEXPORT void JNICALL
|
||
|
Java_noclass_find_1it (JNIEnv *env, jclass k)
|
||
|
{
|
||
|
/* We cause an exception by asking for a class we know does not
|
||
|
exist. */
|
||
|
k = (*env)->FindClass (env, "java/lang/Sarcophagus");
|
||
|
}
|