package F1;

import java.util.concurrent.CancellationException;

/* JADX INFO: loaded from: classes.dex */
public final class o0 extends CancellationException {

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

    public o0(String str, Throwable th, n0 n0Var) {
        super(str);
        this.f633b = n0Var;
        if (th != null) {
            initCause(th);
        }
    }

    public boolean equals(Object obj) {
        if (obj != this) {
            if (obj instanceof o0) {
                o0 o0Var = (o0) obj;
                if (!kotlin.jvm.internal.l.a(o0Var.getMessage(), getMessage()) || !kotlin.jvm.internal.l.a(o0Var.f633b, this.f633b) || !kotlin.jvm.internal.l.a(o0Var.getCause(), getCause())) {
                }
            }
            return false;
        }
        return true;
    }

    @Override // java.lang.Throwable
    public Throwable fillInStackTrace() {
        setStackTrace(new StackTraceElement[0]);
        return this;
    }

    public int hashCode() {
        String message = getMessage();
        kotlin.jvm.internal.l.b(message);
        int iHashCode = ((message.hashCode() * 31) + this.f633b.hashCode()) * 31;
        Throwable cause = getCause();
        return iHashCode + (cause == null ? 0 : cause.hashCode());
    }

    @Override // java.lang.Throwable
    public String toString() {
        return super.toString() + "; job=" + this.f633b;
    }
}
