20 lines
400 B
Java
20 lines
400 B
Java
package com.google.android.gms.auth;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class GoogleAuthException extends Exception {
|
|
public GoogleAuthException() {
|
|
}
|
|
|
|
public GoogleAuthException(String str) {
|
|
super(str);
|
|
}
|
|
|
|
public GoogleAuthException(String str, Throwable th) {
|
|
super(str, th);
|
|
}
|
|
|
|
public GoogleAuthException(Throwable th) {
|
|
super(th);
|
|
}
|
|
}
|