20 lines
416 B
Java
20 lines
416 B
Java
package com.huawei.hms.support.account.common;
|
|
|
|
/* loaded from: classes2.dex */
|
|
public class AccountAuthException extends Exception {
|
|
public AccountAuthException() {
|
|
}
|
|
|
|
public AccountAuthException(String str) {
|
|
super(str);
|
|
}
|
|
|
|
public AccountAuthException(String str, Throwable th) {
|
|
super(str, th);
|
|
}
|
|
|
|
public AccountAuthException(Throwable th) {
|
|
super(th);
|
|
}
|
|
}
|