Initial commit

This commit is contained in:
2025-05-13 19:24:51 +02:00
commit a950f49678
10604 changed files with 932663 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
package com.bottle.hp.album.capture.camera;
import android.util.Log;
/* loaded from: classes.dex */
public class PrepareCameraException extends Exception {
private static final String LOG_PREFIX = "Unable to unlock camera - ";
private static final String MESSAGE = "Unable to use camera for recording";
private static final long serialVersionUID = 6305923762266448674L;
private final String TAG = PrepareCameraException.class.getSimpleName();
@Override // java.lang.Throwable
public String getMessage() {
Log.e(this.TAG, "Unable to unlock camera - Unable to use camera for recording");
return MESSAGE;
}
}