jimu-decompiled/sources/com/google/android/gms/common/UserRecoverableException.java
2025-05-13 19:24:51 +02:00

18 lines
400 B
Java

package com.google.android.gms.common;
import android.content.Intent;
/* loaded from: classes.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);
}
}