| 60 | } |
| 61 | |
| 62 | static void throwJavaMarshallerException(JNIEnv* env, const Valdi::Error& error) { |
| 63 | if (env->ExceptionCheck() != 0L) { |
| 64 | return; |
| 65 | } |
| 66 | |
| 67 | env->ThrowNew(ValdiAndroid::JavaEnv::getCache().getMarshallerExceptionClass().getClass(), error.toString().c_str()); |
| 68 | } |
| 69 | |
| 70 | class AndroidMarshaller : public Valdi::Marshaller { |
| 71 | public: |
no test coverage detected