- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
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 GetCredentialCancellationException extends GetCredentialException {
|
|
public static final Companion Companion = new Companion(null);
|
|
public static final String TYPE_GET_CREDENTIAL_CANCELLATION_EXCEPTION = "android.credentials.GetCredentialException.TYPE_USER_CANCELED";
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public GetCredentialCancellationException() {
|
|
this(null, 1, 0 == true ? 1 : 0);
|
|
}
|
|
|
|
public /* synthetic */ GetCredentialCancellationException(CharSequence charSequence, int i, DefaultConstructorMarker defaultConstructorMarker) {
|
|
this((i & 1) != 0 ? null : charSequence);
|
|
}
|
|
|
|
public GetCredentialCancellationException(CharSequence charSequence) {
|
|
super("android.credentials.GetCredentialException.TYPE_USER_CANCELED", charSequence);
|
|
}
|
|
|
|
public static final class Companion {
|
|
public /* synthetic */ Companion(DefaultConstructorMarker defaultConstructorMarker) {
|
|
this();
|
|
}
|
|
|
|
private Companion() {
|
|
}
|
|
}
|
|
}
|