package io.netty.handler.proxy;

import java.net.ConnectException;

/* JADX INFO: loaded from: classes.dex */
public class ProxyConnectException extends ConnectException {
    private static final long serialVersionUID = 5211364632246265538L;

    public ProxyConnectException() {
    }

    public ProxyConnectException(String str) {
        super(str);
    }

    public ProxyConnectException(String str, Throwable th) {
        super(str);
        initCause(th);
    }

    public ProxyConnectException(Throwable th) {
        initCause(th);
    }
}
