Пример #1
0
inline void jthrow(char const *clsname, char const *what) {jthrow(jnienv(), clsname, what);}
Пример #2
0
inline void jthrow(JNIEnv *env, char const *clsname, char const *what) {jthrow(find_class(env, clsname), what);}
Пример #3
0
inline void jthrow(jhthrowable const &ex) {jthrow(jnienv(), ex);}
Пример #4
0
inline void jthrow(jhclass const &cls, char const *what) {jthrow(jnienv(), cls, what);}
Пример #5
0
void JHandlerInfo::Throw(JRawValueType raw_val) {
  JObject jthrow(&raw_val);
  Throw(jthrow);
}