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