18 lines
390 B
Java
18 lines
390 B
Java
|
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);
|
||
|
}
|
||
|
}
|