package androidx.credentials.playservices.controllers.GetRestoreCredential; import androidx.credentials.CredentialManagerCallback; import androidx.credentials.GetCredentialResponse; import androidx.credentials.exceptions.GetCredentialException; import java.util.concurrent.Executor; import kotlin.Unit; import kotlin.jvm.functions.Function0; import kotlin.jvm.internal.Lambda; /* loaded from: classes.dex */ public final class CredentialProviderGetDigitalCredentialController$invokePlayServices$2$1 extends Lambda implements Function0 { final /* synthetic */ CredentialManagerCallback $callback; final /* synthetic */ Executor $executor; final /* synthetic */ GetCredentialException $getException; /* JADX WARN: 'super' call moved to the top of the method (can break code semantics) */ public CredentialProviderGetDigitalCredentialController$invokePlayServices$2$1(Executor executor, CredentialManagerCallback credentialManagerCallback, GetCredentialException getCredentialException) { super(0); this.$executor = executor; this.$callback = credentialManagerCallback; this.$getException = getCredentialException; } @Override // kotlin.jvm.functions.Function0 public /* bridge */ /* synthetic */ Object invoke() { m125invoke(); return Unit.INSTANCE; } /* renamed from: invoke, reason: collision with other method in class */ public final void m125invoke() { Executor executor = this.$executor; final CredentialManagerCallback credentialManagerCallback = this.$callback; final GetCredentialException getCredentialException = this.$getException; executor.execute(new Runnable() { // from class: androidx.credentials.playservices.controllers.GetRestoreCredential.CredentialProviderGetDigitalCredentialController$invokePlayServices$2$1$$ExternalSyntheticLambda0 @Override // java.lang.Runnable public final void run() { CredentialManagerCallback.this.onError(getCredentialException); } }); } }