package com.google.android.gms.common.api;

/* JADX INFO: loaded from: classes3.dex */
public class ApiException extends Exception {

    /* JADX INFO: renamed from: ˌᴵ, reason: contains not printable characters */
    public final Status f1016;

    public ApiException(Status status) {
        int i = status.f1019;
        String str = status.f1021;
        str = str == null ? "" : str;
        StringBuilder sb = new StringBuilder(String.valueOf(i).length() + 2 + String.valueOf(str).length());
        sb.append(i);
        sb.append(": ");
        sb.append(str);
        super(sb.toString());
        this.f1016 = status;
    }
}
