20 lines
488 B
Java
20 lines
488 B
Java
|
package com.google.android.gms.common;
|
||
|
|
||
|
/* loaded from: classes.dex */
|
||
|
public class GooglePlayServicesManifestException extends IllegalStateException {
|
||
|
private final int zza;
|
||
|
|
||
|
public GooglePlayServicesManifestException(int i, String str) {
|
||
|
super(str);
|
||
|
this.zza = i;
|
||
|
}
|
||
|
|
||
|
public int getExpectedVersion() {
|
||
|
return GoogleApiAvailabilityLight.GOOGLE_PLAY_SERVICES_VERSION_CODE;
|
||
|
}
|
||
|
|
||
|
public int getActualVersion() {
|
||
|
return this.zza;
|
||
|
}
|
||
|
}
|