- 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 NoCredentialException extends GetCredentialException {
|
|
public static final Companion Companion = new Companion(null);
|
|
public static final String TYPE_FRAMEWORK_TYPE_NO_CREDENTIAL = "android.credentials.GetCredentialException.TYPE_NO_CREDENTIAL";
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public NoCredentialException() {
|
|
this(null, 1, 0 == true ? 1 : 0);
|
|
}
|
|
|
|
public /* synthetic */ NoCredentialException(CharSequence charSequence, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this((i & 1) != 0 ? null : charSequence);
|
|
}
|
|
|
|
public NoCredentialException(CharSequence charSequence) {
|
|
super("android.credentials.GetCredentialException.TYPE_NO_CREDENTIAL", charSequence);
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
}
|
|
}
|