- 28,932 files - Full Java source code - Smali files - Resources Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
23 lines
513 B
Java
23 lines
513 B
Java
package com.google.android.gms.auth;
|
|
|
|
import androidx.annotation.NonNull;
|
|
import androidx.annotation.Nullable;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class GoogleAuthException extends Exception {
|
|
public GoogleAuthException() {
|
|
}
|
|
|
|
public GoogleAuthException(@Nullable String str) {
|
|
super(str);
|
|
}
|
|
|
|
public GoogleAuthException(@Nullable String str, @NonNull Throwable th) {
|
|
super(str, th);
|
|
}
|
|
|
|
public GoogleAuthException(@NonNull Throwable th) {
|
|
super(th);
|
|
}
|
|
}
|