14 lines
407 B
Java
14 lines
407 B
Java
|
package pl.charmas.android.reactivelocation2.observables;
|
||
|
|
||
|
import com.google.android.gms.common.ConnectionResult;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public class GoogleAPIConnectionException extends RuntimeException {
|
||
|
private final ConnectionResult a;
|
||
|
|
||
|
public GoogleAPIConnectionException(String str, ConnectionResult connectionResult) {
|
||
|
super(str);
|
||
|
this.a = connectionResult;
|
||
|
}
|
||
|
}
|