package k9; import java.util.concurrent.CancellationException; /* loaded from: classes2.dex */ public final class v1 extends CancellationException { /* renamed from: a, reason: collision with root package name */ public final u1 f11400a; public v1(String str, Throwable th, u1 u1Var) { super(str); this.f11400a = u1Var; if (th != null) { initCause(th); } } public boolean equals(Object obj) { if (obj != this) { if (obj instanceof v1) { v1 v1Var = (v1) obj; if (!d9.j.a(v1Var.getMessage(), getMessage()) || !d9.j.a(v1Var.f11400a, this.f11400a) || !d9.j.a(v1Var.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(); d9.j.b(message); int hashCode = ((message.hashCode() * 31) + this.f11400a.hashCode()) * 31; Throwable cause = getCause(); return hashCode + (cause == null ? 0 : cause.hashCode()); } @Override // java.lang.Throwable public String toString() { return super.toString() + "; job=" + this.f11400a; } }