- 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 ClearCredentialInterruptedException extends ClearCredentialException {
|
|
public static final Companion Companion = new Companion(null);
|
|
public static final String TYPE_CLEAR_CREDENTIAL_INTERRUPTED_EXCEPTION = "androidx.credentials.TYPE_CLEAR_CREDENTIAL_INTERRUPTED_EXCEPTION";
|
|
|
|
/* JADX WARN: Multi-variable type inference failed */
|
|
public ClearCredentialInterruptedException() {
|
|
this(null, 1, 0 == true ? 1 : 0);
|
|
}
|
|
|
|
public /* synthetic */ ClearCredentialInterruptedException(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 ClearCredentialInterruptedException(CharSequence charSequence) {
|
|
super(TYPE_CLEAR_CREDENTIAL_INTERRUPTED_EXCEPTION, charSequence);
|
|
}
|
|
}
|