| 126 | } |
| 127 | |
| 128 | void throwRuntimeEx(JNIEnv* jenv, const char* message) { |
| 129 | throwNamedException(jenv, "java/lang/RuntimeException", message); |
| 130 | } |
| 131 | |
| 132 | void throwParamNotNull(JNIEnv* jenv) { |
| 133 | throwNamedException(jenv, "java/lang/IllegalArgumentException", "Argument cannot be null"); |
no test coverage detected