Camera: Clarify JNI exception message
This exception may be generated through MediaRecorder method calls as well, so clarify that the issue is an invalid camera object. Bug: 18414095 Change-Id: I189ab1a71ab0d6a432b87c45a82c90fe11d22ef8
This commit is contained in:
@@ -133,7 +133,8 @@ sp<Camera> get_native_camera(JNIEnv *env, jobject thiz, JNICameraContext** pCont
|
||||
}
|
||||
ALOGV("get_native_camera: context=%p, camera=%p", context, camera.get());
|
||||
if (camera == 0) {
|
||||
jniThrowRuntimeException(env, "Method called after release()");
|
||||
jniThrowRuntimeException(env,
|
||||
"Camera is being used after Camera.release() was called");
|
||||
}
|
||||
|
||||
if (pContext != NULL) *pContext = context;
|
||||
|
||||
Reference in New Issue
Block a user