21 lines
487 B
Java
21 lines
487 B
Java
package com.google.android.gms.auth;
|
|
|
|
import android.content.Intent;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class UserRecoverableAuthException extends GoogleAuthException {
|
|
private final Intent mIntent;
|
|
|
|
public UserRecoverableAuthException(String str, Intent intent) {
|
|
super(str);
|
|
this.mIntent = intent;
|
|
}
|
|
|
|
public Intent getIntent() {
|
|
if (this.mIntent == null) {
|
|
return null;
|
|
}
|
|
return new Intent(this.mIntent);
|
|
}
|
|
}
|