what-the-bank/sources/com/huawei/hms/api/UserRecoverableException.java

18 lines
390 B
Java
Raw Normal View History

2024-07-27 18:17:47 +07:00
package com.huawei.hms.api;
import android.content.Intent;
/* loaded from: classes2.dex */
public class UserRecoverableException extends Exception {
private final Intent mIntent;
public UserRecoverableException(String str, Intent intent) {
super(str);
this.mIntent = intent;
}
public Intent getIntent() {
return new Intent(this.mIntent);
}
}