MCPcopy Create free account
hub / github.com/OpenSC/OpenSC-Java / jnixThrowException

Function jnixThrowException

jni/src/jnix/jnix.c:57–73  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

55}
56
57int jnixThrowException(JNIEnv *env,
58 const char *class_name,
59 const char *fmt, ...)
60{
61 int sz = 1024;
62
63 do
64 {
65 va_list ap;
66 va_start(ap,fmt);
67 jnixThrowExceptionInternal(&sz,env,class_name,fmt,ap);
68 va_end(ap);
69 }
70 while (sz);
71
72 return -1;
73}
74
75int jnixThrowExceptionV(JNIEnv *env,
76 const char *class_name,

Calls 1

Tested by

no test coverage detected