package coil.network;

import okhttp3.Response;

/* JADX INFO: loaded from: classes.dex */
public final class HttpException extends RuntimeException {
    private final Response response;

    public HttpException(Response response) {
        super("HTTP " + response.f22143d + ": " + response.f22142c);
        this.response = response;
    }

    public final Response getResponse() {
        return this.response;
    }
}
