Construct an exception object from the specified class with the message specified by message and causes that exception to be thrown

Property definitions

jvm $ JniEnv :: throw_new
	# Construct an exception object from the specified class with the message specified by `message` and causes that exception to be thrown
	fun throw_new(clazz: JClass, message: String): Int import String.to_cstring `{
		return (*self)->ThrowNew(self, clazz, String_to_cstring(message));
	`}
lib/jvm/jvm.nit:387,2--390,3