Initial commit
This commit is contained in:
@@ -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;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user