18 lines
435 B
Java
18 lines
435 B
Java
package com.google.android.gms.common;
|
|
|
|
import android.content.Intent;
|
|
|
|
/* loaded from: classes.dex */
|
|
public class GooglePlayServicesRepairableException extends UserRecoverableException {
|
|
private final int zza;
|
|
|
|
public GooglePlayServicesRepairableException(int i, String str, Intent intent) {
|
|
super(str, intent);
|
|
this.zza = i;
|
|
}
|
|
|
|
public int getConnectionStatusCode() {
|
|
return this.zza;
|
|
}
|
|
}
|