Files
rr3-apk/decompiled-community/sources/androidx/credentials/exceptions/CreateCredentialInterruptedException.java
Daniel Elliott c080f0d97f Add Discord community version (64-bit only)
- Added realracing3-community.apk (71.57 MB)
- Removed 32-bit support (armeabi-v7a)
- Only includes arm64-v8a libraries
- Decompiled source code included
- Added README-community.md with analysis
2026-02-18 15:48:36 -08:00

32 lines
1.1 KiB
Java

package androidx.credentials.exceptions;
import kotlin.jvm.internal.DefaultConstructorMarker;
/* loaded from: classes.dex */
public final class CreateCredentialInterruptedException extends CreateCredentialException {
public static final Companion Companion = new Companion(null);
public static final String TYPE_CREATE_CREDENTIAL_INTERRUPTED_EXCEPTION = "android.credentials.CreateCredentialException.TYPE_INTERRUPTED";
/* JADX WARN: Multi-variable type inference failed */
public CreateCredentialInterruptedException() {
this(null, 1, 0 == true ? 1 : 0);
}
public /* synthetic */ CreateCredentialInterruptedException(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 CreateCredentialInterruptedException(CharSequence charSequence) {
super(TYPE_CREATE_CREDENTIAL_INTERRUPTED_EXCEPTION, charSequence);
}
}