21 lines
588 B
Java
21 lines
588 B
Java
package com.google.android.gms.common.api;
|
|
|
|
import android.app.Activity;
|
|
import android.app.PendingIntent;
|
|
import android.content.IntentSender;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class ResolvableApiException extends ApiException {
|
|
public ResolvableApiException(Status status) {
|
|
super(status);
|
|
}
|
|
|
|
public PendingIntent getResolution() {
|
|
return this.mStatus.getResolution();
|
|
}
|
|
|
|
public void startResolutionForResult(Activity activity, int i) throws IntentSender.SendIntentException {
|
|
this.mStatus.startResolutionForResult(activity, i);
|
|
}
|
|
}
|