19 lines
509 B
Java
19 lines
509 B
Java
|
package com.google.android.gms.auth;
|
||
|
|
||
|
import android.content.Intent;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public class GooglePlayServicesAvailabilityException extends UserRecoverableAuthException {
|
||
|
private final int zzu;
|
||
|
|
||
|
/* JADX INFO: Access modifiers changed from: package-private */
|
||
|
public GooglePlayServicesAvailabilityException(int i, String str, Intent intent) {
|
||
|
super(str, intent);
|
||
|
this.zzu = i;
|
||
|
}
|
||
|
|
||
|
public int getConnectionStatusCode() {
|
||
|
return this.zzu;
|
||
|
}
|
||
|
}
|