jimu-decompiled/sources/io/reactivex/exceptions/OnErrorNotImplementedException.java
2025-05-13 19:24:51 +02:00

37 lines
1.5 KiB
Java

package io.reactivex.exceptions;
/* loaded from: classes2.dex */
public final class OnErrorNotImplementedException extends RuntimeException {
private static final long serialVersionUID = -6298857009889503852L;
public OnErrorNotImplementedException(String str, Throwable th) {
super(str, th == null ? new NullPointerException() : th);
}
/* JADX WARN: Illegal instructions before constructor call */
/*
Code decompiled incorrectly, please refer to instructions dump.
To view partially-correct code enable 'Show inconsistent code' option in preferences
*/
public OnErrorNotImplementedException(java.lang.Throwable r3) {
/*
r2 = this;
java.lang.StringBuilder r0 = new java.lang.StringBuilder
r0.<init>()
java.lang.String r1 = "The exception was not handled due to missing onError handler in the subscribe() method call. Further reading: https://github.com/ReactiveX/RxJava/wiki/Error-Handling | "
r0.append(r1)
if (r3 == 0) goto L11
java.lang.String r1 = r3.getMessage()
goto L13
L11:
java.lang.String r1 = ""
L13:
r0.append(r1)
java.lang.String r0 = r0.toString()
r2.<init>(r0, r3)
return
*/
throw new UnsupportedOperationException("Method not decompiled: io.reactivex.exceptions.OnErrorNotImplementedException.<init>(java.lang.Throwable):void");
}
}