Files
rr3-apk/decompiled/sources/androidx/credentials/exceptions/CreateCredentialCancellationException.java
Daniel Elliott f9d20bb3fc Add decompiled APK source code (JADX)
- 28,932 files
- Full Java source code
- Smali files
- Resources

Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
2026-02-18 14:52:23 -08:00

32 lines
1.2 KiB
Java

package androidx.credentials.exceptions;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* loaded from: classes.dex */
public final class CreateCredentialCancellationException extends CreateCredentialException {
public static final Companion Companion = new Companion(null);
public static final String TYPE_CREATE_CREDENTIAL_CANCELLATION_EXCEPTION = "android.credentials.CreateCredentialException.TYPE_USER_CANCELED";
/* JADX WARN: Multi-variable type inference failed */
public CreateCredentialCancellationException() {
this(null, 1, 0 == true ? 1 : 0);
}
public /* synthetic */ CreateCredentialCancellationException(CharSequence charSequence, int i, DefaultConstructorMarker defaultConstructorMarker) {
this((i & 1) != 0 ? null : charSequence);
}
public static final class Companion {
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
this();
}
private Companion() {
}
}
public CreateCredentialCancellationException(CharSequence charSequence) {
super(TYPE_CREATE_CREDENTIAL_CANCELLATION_EXCEPTION, charSequence);
}
}