package h;

/* JADX INFO: loaded from: classes.dex */
public abstract class k implements x {

    /* JADX INFO: renamed from: b, reason: collision with root package name */
    public final x f6537b;

    public k(x xVar) {
        if (xVar == null) {
            throw new IllegalArgumentException("delegate == null");
        }
        this.f6537b = xVar;
    }

    @Override // h.x, java.io.Closeable, java.lang.AutoCloseable
    public void close() {
        this.f6537b.close();
    }

    @Override // h.x
    public y e() {
        return this.f6537b.e();
    }

    public String toString() {
        return getClass().getSimpleName() + "(" + this.f6537b.toString() + ")";
    }
}
