what-the-bank/sources/com/huawei/hms/support/account/common/AccountAuthException.java

20 lines
416 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
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);
}
}